-
Notifications
You must be signed in to change notification settings - Fork 736
/
Copy pathparallel_function_calls.py
49 lines (35 loc) · 1.36 KB
/
parallel_function_calls.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import logging
from dotenv import load_dotenv
from livekit.agents import Agent, AgentSession, JobContext, WorkerOptions, cli
from livekit.agents.llm import function_tool
from livekit.plugins import cartesia, deepgram, openai
logger = logging.getLogger("parallel-functions")
logger.setLevel(logging.INFO)
load_dotenv()
class MyAgent(Agent):
def __init__(self) -> None:
super().__init__(
instructions=(
"You are a voice agent. Call the get_weather_today and get_weather_tomorrow functions when user asks for the weather." # noqa: E501
"Tell the user when you are calling the functions."
),
)
@function_tool()
async def get_weather_today(self) -> str:
"""Called when user asks for the weather."""
return "The weather is sunny today."
@function_tool()
async def get_weather_tomorrow(self) -> str:
"""Called when user asks for the weather."""
return "The weather is rainy tomorrow."
async def entrypoint(ctx: JobContext):
await ctx.connect()
agent = AgentSession(
stt=deepgram.STT(),
llm=openai.LLM(model="gpt-4o-mini"),
tts=cartesia.TTS(),
)
await ctx.wait_for_participant()
await agent.start(agent=MyAgent(), room=ctx.room)
if __name__ == "__main__":
cli.run_app(WorkerOptions(entrypoint_fnc=entrypoint))