livekit-plugins-soniox 1.2.11__tar.gz → 1.2.13__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-soniox might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: livekit-plugins-soniox
3
- Version: 1.2.11
3
+ Version: 1.2.13
4
4
  Summary: Agent Framework plugin for services using Soniox's API.
5
5
  Project-URL: Documentation, https://docs.livekit.io
6
6
  Project-URL: Website, https://livekit.io/
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.10
17
17
  Classifier: Topic :: Multimedia :: Sound/Audio
18
18
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
19
19
  Requires-Python: >=3.9.0
20
- Requires-Dist: livekit-agents>=1.2.11
20
+ Requires-Dist: livekit-agents>=1.2.13
21
21
  Description-Content-Type: text/markdown
22
22
 
23
23
  # Soniox plugin for LiveKit Agents
@@ -113,6 +113,14 @@ class STT(stt.STT):
113
113
  self._vad_stream = vad.stream() if vad else None
114
114
  self._params = params or STTOptions()
115
115
 
116
+ @property
117
+ def model(self) -> str:
118
+ return "unknown"
119
+
120
+ @property
121
+ def provider(self) -> str:
122
+ return "Soniox"
123
+
116
124
  async def _recognize_impl(
117
125
  self,
118
126
  buffer: utils.AudioBuffer,
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = "1.2.11"
15
+ __version__ = "1.2.13"
@@ -28,7 +28,7 @@ classifiers = [
28
28
  "Programming Language :: Python :: 3.10",
29
29
  "Programming Language :: Python :: 3 :: Only",
30
30
  ]
31
- dependencies = ["livekit-agents>=1.2.11"]
31
+ dependencies = ["livekit-agents>=1.2.13"]
32
32
 
33
33
  [project.urls]
34
34
  Documentation = "https://docs.livekit.io"