Video SDK Agents
Project description
VideoSDK Agents
Agents Framework on top of VideoSDK's architecture.
Installation
pip install videosdk-agents
Visit https://docs.videosdk.live/ai_agents/introduction for Quickstart, Examples and Detailed Documentation.
Usage
import asyncio
from videosdk.agents import Agent, AgentSession, RealTimePipeline, function_tool, WorkerJob, RoomOptions, JobContext
from videosdk.plugins.openai import OpenAIRealtime, OpenAIRealtimeConfig
from openai.types.beta.realtime.session import InputAudioTranscription, TurnDetection
class MyVoiceAgent(Agent):
def __init__(self):
super().__init__(
instructions="You are a helpful voice assistant that can answer questions and help with tasks.",
)
async def on_enter(self) -> None:
await self.session.say("How can i assist you today?")
async def entrypoint(ctx: JobContext):
print("Starting connection test...")
print(f"Job context: {jobctx}")
model = OpenAIRealtime(
model="gpt-4o-realtime-preview",
config=OpenAIRealtimeConfig( modalities=["text", "audio"] )
)
pipeline = RealTimePipeline(model=model)
session = AgentSession(
agent=MyVoiceAgent(),
pipeline=pipeline,
context=jobctx
)
try:
await ctx.connect()
await session.start()
print("Connection established. Press Ctrl+C to exit.")
await asyncio.Event().wait()
except KeyboardInterrupt:
print("\nShutting down gracefully...")
finally:
await session.close()
await ctx.shutdown()
def make_context() -> JobContext:
room_options = RoomOptions(room_id="<meeting_id>", name="Sandbox Agent", playground=True)
return JobContext(
room_options=room_options
)
if __name__ == "__main__":
job = WorkerJob(job_func=entryPoint, jobctx=make_context)
job.start()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
videosdk_agents-1.0.17.tar.gz
(606.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file videosdk_agents-1.0.17.tar.gz.
File metadata
- Download URL: videosdk_agents-1.0.17.tar.gz
- Upload date:
- Size: 606.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b3703b9d9e96e793a30bd3297b1a7eebe8dea2e9c40dfeb926a3868e50b1a15
|
|
| MD5 |
51daf6ff2a589ab7624428302172e76f
|
|
| BLAKE2b-256 |
ebff02f8267135fabac649832ff2c5ecd8dc468506db96204c7d401a83dbbf2e
|
File details
Details for the file videosdk_agents-1.0.17-py3-none-any.whl.
File metadata
- Download URL: videosdk_agents-1.0.17-py3-none-any.whl
- Upload date:
- Size: 662.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
875ddffa2fdfd4f79fa7e1df8019f4abdc39d705114de7d402a35b8654a40dc1
|
|
| MD5 |
8f77109f1bd925c55804feb1fb2a3349
|
|
| BLAKE2b-256 |
9a9715f91d7ed33d576be977c03c53300c83891cd5337856a92a5d7c4cf98afb
|