videosdk-plugins-deepgram 0.0.2__tar.gz → 0.0.4__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 videosdk-plugins-deepgram might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: videosdk-plugins-deepgram
3
- Version: 0.0.2
3
+ Version: 0.0.4
4
4
  Summary: VideoSDK Agent Framework plugin for Deepgram
5
5
  Author: videosdk
6
6
  Keywords: ai,audio,deepgram,video,videosdk
@@ -11,7 +11,7 @@ Classifier: Topic :: Multimedia :: Sound/Audio
11
11
  Classifier: Topic :: Multimedia :: Video
12
12
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
13
13
  Requires-Python: >=3.11
14
- Requires-Dist: videosdk-agents>=0.0.10
14
+ Requires-Dist: videosdk-agents>=0.0.15
15
15
  Description-Content-Type: text/markdown
16
16
 
17
17
  VideoSDK Deepgram Plugin
@@ -20,7 +20,7 @@ classifiers = [
20
20
  "Topic :: Scientific/Engineering :: Artificial Intelligence",
21
21
  ]
22
22
  dependencies = [
23
- "videosdk-agents>=0.0.10"
23
+ "videosdk-agents>=0.0.15"
24
24
  ]
25
25
 
26
26
  [tool.hatch.version]
@@ -38,12 +38,9 @@ class DeepgramSTT(BaseSTT):
38
38
  self.endpointing = endpointing
39
39
  self.filler_words = filler_words
40
40
  self.base_url = base_url
41
-
42
- # WebSocket session for streaming
43
41
  self._session: Optional[aiohttp.ClientSession] = None
44
42
  self._ws: Optional[aiohttp.ClientWebSocketResponse] = None
45
43
  self._ws_task: Optional[asyncio.Task] = None
46
-
47
44
  self._last_speech_event_time = 0.0
48
45
  self._previous_speech_event_time = 0.0
49
46
 
@@ -57,7 +54,6 @@ class DeepgramSTT(BaseSTT):
57
54
 
58
55
  if not self._ws:
59
56
  await self._connect_ws()
60
- # Start listening for responses in background
61
57
  self._ws_task = asyncio.create_task(self._listen_for_responses())
62
58
 
63
59
  try:
@@ -0,0 +1 @@
1
+ __version__ = "0.0.4"
@@ -1 +0,0 @@
1
- __version__ = "0.0.2"