From 88b5b5ff62652d24c897cf0039e3089b3f03a54f Mon Sep 17 00:00:00 2001 From: examples-bot Date: Thu, 2 Apr 2026 18:19:21 +0000 Subject: [PATCH] fix(examples): pin deepgram-sdk==6.1.1 and add tag in 030-livekit-agents-python - Update deepgram-sdk from >=3.0.0 to ==6.1.1 to match repo standard - Add tag="deepgram-examples" to test transcribe_url call --- examples/030-livekit-agents-python/requirements.txt | 2 +- examples/030-livekit-agents-python/tests/test_example.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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"