Skip to content

Commit b36d02a

Browse files
Agents v0.0.64 (#197)
1 parent db92479 commit b36d02a

File tree

68 files changed

+99
-99
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+99
-99
lines changed

BUILD_YOUR_OWN_PLUGIN.md

Lines changed: 1 addition & 1 deletion

videosdk-agents/pyproject.toml

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -54,38 +54,38 @@ dependencies = [
5454
videosdk = "videosdk.agents.cli:main"
5555

5656
[project.optional-dependencies]
57-
anthropic = ["videosdk-plugins-anthropic>=0.0.63"]
58-
assemblyai = ["videosdk-plugins-assemblyai>=0.0.63"]
59-
aws = ["videosdk-plugins-aws>=0.0.63"]
60-
azure = ["videosdk-plugins-azure>=0.0.63"]
61-
cartesia = ["videosdk-plugins-cartesia>=0.0.63"]
62-
cerebras = ["videosdk-plugins-cerebras>=0.0.63"]
63-
cometapi = ["videosdk-plugins-cometapi>=0.0.63"]
64-
deepgram = ["videosdk-plugins-deepgram>=0.0.63"]
65-
elevenlabs = ["videosdk-plugins-elevenlabs>=0.0.63"]
66-
google = ["videosdk-plugins-google>=0.0.63"]
67-
groq = ["videosdk-plugins-groq>=0.0.63"]
68-
gladia = ["videosdk-plugins-gladia>=0.0.63"]
69-
humeai = ["videosdk-plugins-humeai>=0.0.63"]
70-
inworldai = ["videosdk-plugins-inworldai>=0.0.63"]
71-
lmnt = ["videosdk-plugins-lmnt>=0.0.63"]
72-
murfai = ["videosdk-plugins-murfai>=0.0.63"]
73-
navana = ["videosdk-plugins-navana>=0.0.63"]
74-
neuphonic = ["videosdk-plugins-neuphonic>=0.0.63"]
75-
nvidia = ["videosdk-plugins-nvidia>=0.0.63"]
76-
openai = ["videosdk-plugins-openai>=0.0.63"]
77-
papla = ["videosdk-plugins-papla>=0.0.63"]
78-
resemble = ["videosdk-plugins-resemble>=0.0.63"]
79-
rime = ["videosdk-plugins-rime>=0.0.63"]
80-
rnnoise = ["videosdk-plugins-rnnoise>=0.0.63"]
81-
sarvamai = ["videosdk-plugins-sarvamai>=0.0.63"]
82-
silero = ["videosdk-plugins-silero>=0.0.63"]
83-
simli = ["videosdk-plugins-simli>=0.0.63"]
84-
smallestai = ["videosdk-plugins-smallestai>=0.0.63"]
85-
speechify = ["videosdk-plugins-speechify>=0.0.63"]
86-
turn-detector = ["videosdk-plugins-turn-detector>=0.0.63"]
87-
ultravox = ["videosdk-plugins-ultravox>=0.0.63"]
88-
xai = ["videosdk-plugins-xai>=0.0.63"]
57+
anthropic = ["videosdk-plugins-anthropic>=0.0.64"]
58+
assemblyai = ["videosdk-plugins-assemblyai>=0.0.64"]
59+
aws = ["videosdk-plugins-aws>=0.0.64"]
60+
azure = ["videosdk-plugins-azure>=0.0.64"]
61+
cartesia = ["videosdk-plugins-cartesia>=0.0.64"]
62+
cerebras = ["videosdk-plugins-cerebras>=0.0.64"]
63+
cometapi = ["videosdk-plugins-cometapi>=0.0.64"]
64+
deepgram = ["videosdk-plugins-deepgram>=0.0.64"]
65+
elevenlabs = ["videosdk-plugins-elevenlabs>=0.0.64"]
66+
google = ["videosdk-plugins-google>=0.0.64"]
67+
groq = ["videosdk-plugins-groq>=0.0.64"]
68+
gladia = ["videosdk-plugins-gladia>=0.0.64"]
69+
humeai = ["videosdk-plugins-humeai>=0.0.64"]
70+
inworldai = ["videosdk-plugins-inworldai>=0.0.64"]
71+
lmnt = ["videosdk-plugins-lmnt>=0.0.64"]
72+
murfai = ["videosdk-plugins-murfai>=0.0.64"]
73+
navana = ["videosdk-plugins-navana>=0.0.64"]
74+
neuphonic = ["videosdk-plugins-neuphonic>=0.0.64"]
75+
nvidia = ["videosdk-plugins-nvidia>=0.0.64"]
76+
openai = ["videosdk-plugins-openai>=0.0.64"]
77+
papla = ["videosdk-plugins-papla>=0.0.64"]
78+
resemble = ["videosdk-plugins-resemble>=0.0.64"]
79+
rime = ["videosdk-plugins-rime>=0.0.64"]
80+
rnnoise = ["videosdk-plugins-rnnoise>=0.0.64"]
81+
sarvamai = ["videosdk-plugins-sarvamai>=0.0.64"]
82+
silero = ["videosdk-plugins-silero>=0.0.64"]
83+
simli = ["videosdk-plugins-simli>=0.0.64"]
84+
smallestai = ["videosdk-plugins-smallestai>=0.0.64"]
85+
speechify = ["videosdk-plugins-speechify>=0.0.64"]
86+
turn-detector = ["videosdk-plugins-turn-detector>=0.0.64"]
87+
ultravox = ["videosdk-plugins-ultravox>=0.0.64"]
88+
xai = ["videosdk-plugins-xai>=0.0.64"]
8989
videosdk-conversational-graph = ["videosdk-conversational-graph>=0.0.1"]
9090

9191
[tool.hatch.version]

videosdk-agents/videosdk/agents/room/room.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def init_meeting(self):
209209
self._left: bool = False
210210
self.sdk_metadata = {
211211
"sdk": "agents",
212-
"sdk_version": "0.0.63"
212+
"sdk_version": "0.0.64"
213213
}
214214
self.videosdk_meeting_meta_data= {
215215
"agent_id": self.agent_id,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.63"
1+
__version__ = "0.0.64"

videosdk-plugins/videosdk-plugins-anthropic/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
"Topic :: Multimedia :: Video",
2121
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2222
]
23-
dependencies = ["videosdk-agents>=0.0.63", "anthropic>=0.55.0"]
23+
dependencies = ["videosdk-agents>=0.0.64", "anthropic>=0.55.0"]
2424

2525
[tool.hatch.version]
2626
path = "videosdk/plugins/anthropic/version.py"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.63"
1+
__version__ = "0.0.64"

videosdk-plugins/videosdk-plugins-assemblyai/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
"Topic :: Multimedia :: Video",
2121
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2222
]
23-
dependencies = ["videosdk-agents>=0.0.63","aiohttp"]
23+
dependencies = ["videosdk-agents>=0.0.64","aiohttp"]
2424

2525
[tool.hatch.version]
2626
path = "videosdk/plugins/assemblyai/version.py"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.63"
1+
__version__ = "0.0.64"

videosdk-plugins/videosdk-plugins-aws/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers = [
2121
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2222
]
2323
dependencies = [
24-
"videosdk-agents>=0.0.63",
24+
"videosdk-agents>=0.0.64",
2525
"aws-sdk-bedrock-runtime",
2626
"smithy-aws-core",
2727
"boto3",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.63"
1+
__version__ = "0.0.64"

0 commit comments

Comments
 (0)