livellm 1.3.5__tar.gz → 1.3.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {livellm-1.3.5 → livellm-1.3.6}/PKG-INFO +1 -1
- {livellm-1.3.5 → livellm-1.3.6}/livellm/livellm.py +3 -3
- {livellm-1.3.5 → livellm-1.3.6}/pyproject.toml +1 -1
- {livellm-1.3.5 → livellm-1.3.6}/.gitignore +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/LICENSE +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/README.md +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/__init__.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/models/__init__.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/models/agent/__init__.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/models/agent/agent.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/models/agent/chat.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/models/agent/tools.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/models/audio/__init__.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/models/audio/speak.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/models/audio/transcribe.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/models/common.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/models/fallback.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/models/transcription.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/models/ws.py +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/py.typed +0 -0
- {livellm-1.3.5 → livellm-1.3.6}/livellm/transcripton.py +0 -0
|
@@ -564,11 +564,11 @@ class LivellmWsClient(BaseLivellmClient):
|
|
|
564
564
|
|
|
565
565
|
if response.status == WsStatus.ERROR:
|
|
566
566
|
raise Exception(f"WebSocket stream failed: {response.error}")
|
|
567
|
-
|
|
568
|
-
yield response
|
|
569
|
-
|
|
567
|
+
|
|
570
568
|
if response.status == WsStatus.SUCCESS:
|
|
571
569
|
break
|
|
570
|
+
|
|
571
|
+
yield response
|
|
572
572
|
|
|
573
573
|
# Implement abstract methods from BaseLivellmClient
|
|
574
574
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|