From 3015977cb015a8926ed067afaff68f1cc6de3042 Mon Sep 17 00:00:00 2001 From: Topher Hindman Date: Mon, 13 Apr 2026 07:09:07 -0700 Subject: [PATCH] remove aicoustics from default starter --- pyproject.toml | 1 - src/agent.py | 6 ++---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7911301..a9af20b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,6 @@ requires-python = ">=3.10, <3.15" dependencies = [ "livekit-agents[silero,turn-detector]~=1.5", - "livekit-plugins-ai-coustics~=0.2", "livekit-plugins-noise-cancellation~=0.2", "python-dotenv", ] diff --git a/src/agent.py b/src/agent.py index 5fa16e2..71066df 100644 --- a/src/agent.py +++ b/src/agent.py @@ -12,7 +12,7 @@ inference, room_io, ) -from livekit.plugins import ai_coustics, noise_cancellation, silero +from livekit.plugins import noise_cancellation, silero from livekit.plugins.turn_detector.multilingual import MultilingualModel logger = logging.getLogger("agent") @@ -115,9 +115,7 @@ async def my_agent(ctx: JobContext): noise_cancellation.BVCTelephony() if params.participant.kind == rtc.ParticipantKind.PARTICIPANT_KIND_SIP - else ai_coustics.audio_enhancement( - model=ai_coustics.EnhancerModel.QUAIL_VF_L - ) + else noise_cancellation.BVC() ), ), ),