-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path001-hello-pipecat-nim.py
205 lines (170 loc) · 7.56 KB
/
001-hello-pipecat-nim.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#
# Copyright (c) 2024, Daily
#
# SPDX-License-Identifier: BSD 2-Clause License
#
#
# Loads the SYSTEM_PROMPT content from the file 'prompt.txt'
#
import aiohttp
import asyncio
import os
import sys
from loguru import logger
from dotenv import load_dotenv
from noaa_sdk import NOAA
from openai.types.chat import ChatCompletionToolParam
from pipecat.audio.vad.silero import SileroVADAnalyzer
from pipecat.frames.frames import EndFrame
from pipecat.pipeline.pipeline import Pipeline
from pipecat.pipeline.runner import PipelineRunner
from pipecat.pipeline.task import PipelineParams, PipelineTask
from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContext
from pipecat.services.nim import NimLLMService
from pipecat.services.riva import FastPitchTTSService, ParakeetSTTService
from pipecat.transports.services.daily import DailyParams, DailyTransport
from pipecat.transports.services.helpers.daily_rest import DailyRESTHelper, DailyRoomParams
logger.remove(0)
logger.add(sys.stderr, level="DEBUG")
load_dotenv()
# Load SYSTEM_PROMPT content from file 'prompt.txt'
with open("prompt.txt", "r") as f:
SYSTEM_PROMPT = f.read()
async def main():
async with aiohttp.ClientSession() as session:
daily_rest_helper = DailyRESTHelper(
daily_api_key=os.getenv("DAILY_API_KEY"),
daily_api_url=os.getenv("DAILY_API_URL", "https://api.daily.co/v1"),
aiohttp_session=session,
)
room_config = await daily_rest_helper.create_room(
DailyRoomParams(
properties={"enable_prejoin_ui":False}
)
)
# Url to talk to the NVIDIA NIM Agent
room_url = room_config.url
print("___________________________________*")
print("___________________________________*")
print("___________________________________* Navigate to")
print(
f"___________________________________* {room_url}"
)
print("___________________________________* to talk to NVIDIA NIM Agent Lydia.")
print("___________________________________*")
print("___________________________________*")
transport = DailyTransport(
room_url,
None,
"Lydia",
DailyParams(
audio_out_enabled=True,
vad_enabled=True,
vad_analyzer=SileroVADAnalyzer(),
vad_audio_passthrough=True,
),
)
stt = ParakeetSTTService(api_key=os.getenv("NVIDIA_API_KEY"))
llm = NimLLMService(api_key=os.getenv("NVIDIA_API_KEY"), model="meta/llama-3.3-70b-instruct")
tts = FastPitchTTSService(api_key=os.getenv("NVIDIA_API_KEY"))
messages = [{"role": "system", "content": SYSTEM_PROMPT}]
## tool calling
async def start_fetch_weather(function_name, llm, context):
print(f"Starting fetch_weather_from_api with function_name: {function_name}")
async def get_noaa_simple_weather(latitude: float, longitude: float, **kwargs):
print(f"NOAA get simple weather for '{latitude}, {longitude}'")
n = NOAA()
description = False
fahrenheit_temp = 0
try:
observations = n.get_observations_by_lat_lon(latitude, longitude, num_of_stations=1)
for observation in observations:
description = observation["textDescription"]
celsius_temp = observation["temperature"]["value"]
if description:
break
fahrenheit_temp = (celsius_temp * 9 / 5) + 32
# fallback to temperature if no description in any of the observations
if fahrenheit_temp and not description:
description = fahrenheit_temp
except Exception as e:
print(f"Error getting NOAA weather: {e}")
return description, fahrenheit_temp
async def fetch_weather_from_api(
function_name, tool_call_id, args, llm, context, result_callback
):
location = args["location"]
latitude = float(args["latitude"])
longitude = float(args["longitude"])
print(f"fetch_weather_from_api * location: {location}, lat & lon: {latitude}, {longitude}")
if latitude and longitude:
description, fahrenheit_temp = await get_noaa_simple_weather(latitude, longitude)
else:
return await result_callback("Sorry, I don't recognize that location.")
if not description:
await result_callback(
f"I'm sorry, I can't get the weather for {location} right now. Can you ask again please?"
)
else:
await result_callback(
f"The weather in {location} is currently {round(fahrenheit_temp)} degrees and {description}."
)
tools = [
ChatCompletionToolParam(
type="function",
function={
"name": "get_weather",
"description": "Get the current weather",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The location for the weather request.",
},
"latitude": {
"type": "string",
"description": "Infer the latitude from the location. Supply latitude as a string. For example, '42.3601'.",
},
"longitude": {
"type": "string",
"description": "Infer the longitude from the location. Supply longitude as a string. For example, '-71.0589'.",
},
},
"required": ["location", "latitude", "longitude"],
},
},
),
]
llm.register_function(None, fetch_weather_from_api, start_callback=start_fetch_weather)
context = OpenAILLMContext(messages, tools)
context_aggregator = llm.create_context_aggregator(context)
pipeline = Pipeline(
[
transport.input(), # Transport user input
stt, # STT
context_aggregator.user(), # User responses
llm, # LLM
tts, # TTS
transport.output(), # Transport bot output
context_aggregator.assistant(), # Assistant spoken responses
]
)
task = PipelineTask(
pipeline,
PipelineParams(
allow_interruptions=True,
enable_metrics=True,
),
)
@transport.event_handler("on_first_participant_joined")
async def on_first_participant_joined(transport, participant):
await task.queue_frames([context_aggregator.user().get_context_frame()])
@transport.event_handler("on_participant_left")
async def on_participant_left(transport, participant, reason):
print(f"Participant left: {participant}")
await task.queue_frame(EndFrame())
runner = PipelineRunner()
await runner.run(task)
if __name__ == "__main__":
asyncio.run(main())