diff --git a/examples/030-livekit-agents-python/requirements.txt b/examples/030-livekit-agents-python/requirements.txt index 330defe..c8a467e 100644 --- a/examples/030-livekit-agents-python/requirements.txt +++ b/examples/030-livekit-agents-python/requirements.txt @@ -1,6 +1,6 @@ livekit-agents[silero,turn-detector]~=1.4 livekit-plugins-deepgram~=1.4 livekit-plugins-noise-cancellation~=0.2 -deepgram-sdk>=3.0.0 +deepgram-sdk==6.1.1 openai>=1.0.0 python-dotenv>=1.0.0 diff --git a/examples/030-livekit-agents-python/tests/test_example.py b/examples/030-livekit-agents-python/tests/test_example.py index 5388463..ca2f7c4 100644 --- a/examples/030-livekit-agents-python/tests/test_example.py +++ b/examples/030-livekit-agents-python/tests/test_example.py @@ -29,6 +29,7 @@ def test_deepgram_stt(): url="https://dpgr.am/spacewalk.wav", model="nova-3", smart_format=True, + tag="deepgram-examples", ) transcript = response.results.channels[0].alternatives[0].transcript assert len(transcript) > 10, "Transcript too short"