A powerful framework for building realtime voice AI agents
Project description
LiveKit Agents for Python
Realtime framework for production-grade multimodal and voice AI agents.
See https://docs.livekit.io/agents/ for quickstarts, documentation, and examples.
from dotenv import load_dotenv
from livekit import agents
from livekit.agents import AgentSession, Agent, RoomInputOptions
from livekit.plugins import openai
load_dotenv()
async def entrypoint(ctx: agents.JobContext):
await ctx.connect()
session = AgentSession(
llm=openai.realtime.RealtimeModel(
voice="coral"
)
)
await session.start(
room=ctx.room,
agent=Agent(instructions="You are a helpful voice AI assistant.")
)
await session.generate_reply(
instructions="Greet the user and offer your assistance."
)
if __name__ == "__main__":
agents.cli.run_app(agents.WorkerOptions(entrypoint_fnc=entrypoint))
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
livekit_agents-1.4.4.tar.gz
(2.4 MB
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 livekit_agents-1.4.4.tar.gz.
File metadata
- Download URL: livekit_agents-1.4.4.tar.gz
- Upload date:
- Size: 2.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0048f76881a8840f4aa6eb9dad9e5ff5c196ba88fe25142900dcdd3fa8d7bb61
|
|
| MD5 |
0f2269f000f72b2ed31acd24dbab6ef2
|
|
| BLAKE2b-256 |
3952a561e264974778738e20fcd06eb9c81bb3f083d3d5955aeb15b31c07b4ab
|
File details
Details for the file livekit_agents-1.4.4-py3-none-any.whl.
File metadata
- Download URL: livekit_agents-1.4.4-py3-none-any.whl
- Upload date:
- Size: 2.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddfc7b92e3185c8bb68e25590221b4e0f14abc06ca731a11b60804e3432dcc14
|
|
| MD5 |
6b8688046b8a43376427230b56fbf4e7
|
|
| BLAKE2b-256 |
4151723d35f286a33eeb7d39a81dad83ffa9dbce0128ccbbf17436f88ee2f316
|