From 2c93f9e436a3e6f1a3d0886ccce4a0bb515b2981 Mon Sep 17 00:00:00 2001 From: examples-bot Date: Sat, 4 Apr 2026 06:26:37 +0000 Subject: [PATCH] =?UTF-8?q?[Fix]=20220-django-channels-live-stt-python=20?= =?UTF-8?q?=E2=80=94=20pin=20deepgram-sdk=20to=20v6.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The requirements.txt had a loose lower bound (>=4.0.0) which could pull in incompatible SDK versions. The consumer code already uses the v6 API surface (listen.v1.connect, EventType, ListenV1Results), so this pins the SDK to the required 6.1.1 release. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- examples/220-django-channels-live-stt-python/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/220-django-channels-live-stt-python/requirements.txt b/examples/220-django-channels-live-stt-python/requirements.txt index a47930e..63492ab 100644 --- a/examples/220-django-channels-live-stt-python/requirements.txt +++ b/examples/220-django-channels-live-stt-python/requirements.txt @@ -1,5 +1,5 @@ django>=5.0,<6.0 channels>=4.0,<5.0 daphne>=4.0,<5.0 -deepgram-sdk>=4.0.0 +deepgram-sdk==6.1.1 python-dotenv>=1.0.0