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 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.1.0"
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
  ]