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() ), ), ),