livekit-plugins-spitch 1.2.11__tar.gz → 1.2.12__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.
Potentially problematic release.
This version of livekit-plugins-spitch might be problematic. Click here for more details.
- {livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/PKG-INFO +2 -2
- {livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/livekit/plugins/spitch/stt.py +8 -0
- {livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/livekit/plugins/spitch/tts.py +8 -0
- {livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/livekit/plugins/spitch/version.py +1 -1
- {livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/pyproject.toml +1 -1
- {livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/.gitignore +0 -0
- {livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/README.md +0 -0
- {livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/livekit/plugins/spitch/__init__.py +0 -0
- {livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/livekit/plugins/spitch/log.py +0 -0
- {livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/livekit/plugins/spitch/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: livekit-plugins-spitch
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.12
|
|
4
4
|
Summary: spitch plugin template for LiveKit Agents
|
|
5
5
|
Project-URL: Documentation, https://docs.livekit.io
|
|
6
6
|
Project-URL: Website, https://livekit.io/
|
|
@@ -18,7 +18,7 @@ Classifier: Topic :: Multimedia :: Sound/Audio
|
|
|
18
18
|
Classifier: Topic :: Multimedia :: Video
|
|
19
19
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
20
|
Requires-Python: >=3.9.0
|
|
21
|
-
Requires-Dist: livekit-agents[codecs]>=1.2.
|
|
21
|
+
Requires-Dist: livekit-agents[codecs]>=1.2.12
|
|
22
22
|
Requires-Dist: spitch
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
|
{livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/livekit/plugins/spitch/stt.py
RENAMED
|
@@ -32,6 +32,14 @@ class STT(stt.STT):
|
|
|
32
32
|
self._opts = _STTOptions(language=language)
|
|
33
33
|
self._client = AsyncSpitch()
|
|
34
34
|
|
|
35
|
+
@property
|
|
36
|
+
def model(self) -> str:
|
|
37
|
+
return "unknown"
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
def provider(self) -> str:
|
|
41
|
+
return "Spitch"
|
|
42
|
+
|
|
35
43
|
def update_options(self, language: str):
|
|
36
44
|
self._opts.language = language or self._opts.language
|
|
37
45
|
|
{livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/livekit/plugins/spitch/tts.py
RENAMED
|
@@ -36,6 +36,14 @@ class TTS(tts.TTS):
|
|
|
36
36
|
self._opts = _TTSOptions(language=language, voice=voice)
|
|
37
37
|
self._client = AsyncSpitch()
|
|
38
38
|
|
|
39
|
+
@property
|
|
40
|
+
def model(self) -> str:
|
|
41
|
+
return "unknown"
|
|
42
|
+
|
|
43
|
+
@property
|
|
44
|
+
def provider(self) -> str:
|
|
45
|
+
return "Spitch"
|
|
46
|
+
|
|
39
47
|
def synthesize(
|
|
40
48
|
self,
|
|
41
49
|
text: str,
|
|
@@ -22,7 +22,7 @@ classifiers = [
|
|
|
22
22
|
"Programming Language :: Python :: 3.10",
|
|
23
23
|
"Programming Language :: Python :: 3 :: Only",
|
|
24
24
|
]
|
|
25
|
-
dependencies = ["livekit-agents[codecs]>=1.2.
|
|
25
|
+
dependencies = ["livekit-agents[codecs]>=1.2.12", "spitch"]
|
|
26
26
|
|
|
27
27
|
[project.urls]
|
|
28
28
|
Documentation = "https://docs.livekit.io"
|
|
File without changes
|
|
File without changes
|
{livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/livekit/plugins/spitch/__init__.py
RENAMED
|
File without changes
|
{livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/livekit/plugins/spitch/log.py
RENAMED
|
File without changes
|
{livekit_plugins_spitch-1.2.11 → livekit_plugins_spitch-1.2.12}/livekit/plugins/spitch/py.typed
RENAMED
|
File without changes
|