videosdk-plugins-openai 0.0.3__py3-none-any.whl → 0.0.4__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.
Potentially problematic release.
This version of videosdk-plugins-openai might be problematic. Click here for more details.
- videosdk/plugins/openai/realtime_api.py +3 -2
- videosdk/plugins/openai/version.py +1 -1
- {videosdk_plugins_openai-0.0.3.dist-info → videosdk_plugins_openai-0.0.4.dist-info}/METADATA +2 -2
- videosdk_plugins_openai-0.0.4.dist-info/RECORD +6 -0
- videosdk_plugins_openai-0.0.3.dist-info/RECORD +0 -6
- {videosdk_plugins_openai-0.0.3.dist-info → videosdk_plugins_openai-0.0.4.dist-info}/WHEEL +0 -0
|
@@ -123,7 +123,7 @@ class OpenAIRealtime(RealtimeBaseModel[OpenAIEventTypes]):
|
|
|
123
123
|
self._session: Optional[OpenAISession] = None
|
|
124
124
|
self._closing = False
|
|
125
125
|
self._instructions: Optional[str] = None
|
|
126
|
-
self._tools: Optional[List[FunctionTool]] =
|
|
126
|
+
self._tools: Optional[List[FunctionTool]] = []
|
|
127
127
|
self.loop = None
|
|
128
128
|
self.audio_track: Optional[CustomAudioStreamTrack] = None
|
|
129
129
|
self._formatted_tools: Optional[List[Dict[str, Any]]] = None
|
|
@@ -520,4 +520,5 @@ class OpenAIRealtime(RealtimeBaseModel[OpenAIEventTypes]):
|
|
|
520
520
|
"""Handle tools_updated event"""
|
|
521
521
|
tools = data.get("tools", [])
|
|
522
522
|
self._tools = tools
|
|
523
|
-
self.
|
|
523
|
+
self.tools_formatted = self._format_tools_for_session(tools)
|
|
524
|
+
self._formatted_tools = self.tools_formatted
|
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.0.
|
|
1
|
+
__version__ = "0.0.4"
|
{videosdk_plugins_openai-0.0.3.dist-info → videosdk_plugins_openai-0.0.4.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: videosdk-plugins-openai
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: VideoSDK Agent Framework plugin for OpenAI services
|
|
5
5
|
Author: videosdk
|
|
6
6
|
Keywords: ai,audio,openai,video,videosdk
|
|
@@ -12,7 +12,7 @@ Classifier: Topic :: Multimedia :: Video
|
|
|
12
12
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
13
13
|
Requires-Python: >=3.11
|
|
14
14
|
Requires-Dist: openai[realtime]>=1.68.2
|
|
15
|
-
Requires-Dist: videosdk-agents>=0.0.
|
|
15
|
+
Requires-Dist: videosdk-agents>=0.0.6
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
|
|
18
18
|
VideoSDK OpenAI Plugin
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
videosdk/plugins/openai/__init__.py,sha256=lytPalXAu1WWdr08gzLWiz6yGkBvupeQJlcvR0sGAj8,126
|
|
2
|
+
videosdk/plugins/openai/realtime_api.py,sha256=khgYjRk4laAQdCvthHHd48Z7l09YdO6l0QUN9JsoazE,21058
|
|
3
|
+
videosdk/plugins/openai/version.py,sha256=2GWffEF1rjyrveUGdfR8y3cl3JUnX0gJjr8Ryy_u4JQ,21
|
|
4
|
+
videosdk_plugins_openai-0.0.4.dist-info/METADATA,sha256=k3M1LiqANHv-STJQot9sz4uadTLAFQ5r0P33G7lTqPA,774
|
|
5
|
+
videosdk_plugins_openai-0.0.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
6
|
+
videosdk_plugins_openai-0.0.4.dist-info/RECORD,,
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
videosdk/plugins/openai/__init__.py,sha256=lytPalXAu1WWdr08gzLWiz6yGkBvupeQJlcvR0sGAj8,126
|
|
2
|
-
videosdk/plugins/openai/realtime_api.py,sha256=0SLhqZQPJqgTaHy5vl6AnVy3RK-jZW4F_MVy5nxIu4A,21029
|
|
3
|
-
videosdk/plugins/openai/version.py,sha256=k5tJXhBQJ4l9fKHJ76K5w98zBHoYvNk9r-UNH6eQ2-k,21
|
|
4
|
-
videosdk_plugins_openai-0.0.3.dist-info/METADATA,sha256=w_B2-_MjBqJY_5z9Jjt-4CtrNwzX7amowx2RCM6NhnE,774
|
|
5
|
-
videosdk_plugins_openai-0.0.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
6
|
-
videosdk_plugins_openai-0.0.3.dist-info/RECORD,,
|
|
File without changes
|