livellm 1.1.1__py3-none-any.whl → 1.3.0__py3-none-any.whl
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/__init__.py +6 -2
- livellm/livellm.py +671 -69
- livellm/models/__init__.py +5 -0
- livellm/models/agent/agent.py +3 -4
- livellm/models/audio/speak.py +13 -0
- livellm/models/audio/transcribe.py +7 -8
- livellm/models/fallback.py +3 -3
- livellm/models/transcription.py +32 -0
- livellm/models/ws.py +28 -0
- livellm/transcripton.py +114 -0
- livellm-1.3.0.dist-info/METADATA +634 -0
- livellm-1.3.0.dist-info/RECORD +20 -0
- livellm-1.1.1.dist-info/METADATA +0 -625
- livellm-1.1.1.dist-info/RECORD +0 -17
- {livellm-1.1.1.dist-info → livellm-1.3.0.dist-info}/WHEEL +0 -0
- {livellm-1.1.1.dist-info → livellm-1.3.0.dist-info}/licenses/LICENSE +0 -0
livellm/__init__.py
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
"""LiveLLM Client - Python client for the LiveLLM Proxy and Realtime APIs."""
|
|
2
2
|
|
|
3
|
-
from .livellm import LivellmClient
|
|
3
|
+
from .livellm import LivellmClient, LivellmWsClient, BaseLivellmClient
|
|
4
|
+
from .transcripton import TranscriptionWsClient
|
|
4
5
|
from . import models
|
|
5
6
|
|
|
6
|
-
__version__ = "1.
|
|
7
|
+
__version__ = "1.2.0"
|
|
7
8
|
|
|
8
9
|
__all__ = [
|
|
9
10
|
# Version
|
|
10
11
|
"__version__",
|
|
11
12
|
# Classes
|
|
12
13
|
"LivellmClient",
|
|
14
|
+
"LivellmWsClient",
|
|
15
|
+
"BaseLivellmClient",
|
|
16
|
+
"TranscriptionWsClient",
|
|
13
17
|
# Models
|
|
14
18
|
*models.__all__,
|
|
15
19
|
]
|