Skip to content

Commit d5d227e

Browse files
remove aicoustics from default starter (#64)
1 parent 9b17cd8 commit d5d227e

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ requires-python = ">=3.10, <3.15"
1010

1111
dependencies = [
1212
"livekit-agents[silero,turn-detector]~=1.5",
13-
"livekit-plugins-ai-coustics~=0.2",
1413
"livekit-plugins-noise-cancellation~=0.2",
1514
"python-dotenv",
1615
]

src/agent.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
inference,
1313
room_io,
1414
)
15-
from livekit.plugins import ai_coustics, noise_cancellation, silero
15+
from livekit.plugins import noise_cancellation, silero
1616
from livekit.plugins.turn_detector.multilingual import MultilingualModel
1717

1818
logger = logging.getLogger("agent")
@@ -115,9 +115,7 @@ async def my_agent(ctx: JobContext):
115115
noise_cancellation.BVCTelephony()
116116
if params.participant.kind
117117
== rtc.ParticipantKind.PARTICIPANT_KIND_SIP
118-
else ai_coustics.audio_enhancement(
119-
model=ai_coustics.EnhancerModel.QUAIL_VF_L
120-
)
118+
else noise_cancellation.BVC()
121119
),
122120
),
123121
),

0 commit comments

Comments
 (0)