-
Notifications
You must be signed in to change notification settings - Fork 257
Expand file tree
/
Copy pathfunction_calling_while_loop.py
More file actions
154 lines (134 loc) · 4.93 KB
/
function_calling_while_loop.py
File metadata and controls
154 lines (134 loc) · 4.93 KB
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
import json
import os
import azure.identity
import openai
from dotenv import load_dotenv
# Setup the OpenAI client to use either Azure, OpenAI.com, or Ollama API
load_dotenv(override=True)
API_HOST = os.getenv("API_HOST", "azure")
if API_HOST == "azure":
token_provider = azure.identity.get_bearer_token_provider(
azure.identity.DefaultAzureCredential(), "https://cognitiveservices.azure.com/.default"
)
client = openai.OpenAI(
base_url=f"{os.environ['AZURE_OPENAI_ENDPOINT'].rstrip('/')}/openai/v1/",
api_key=token_provider,
)
MODEL_NAME = os.environ["AZURE_OPENAI_CHAT_DEPLOYMENT"]
elif API_HOST == "ollama":
client = openai.OpenAI(base_url=os.environ["OLLAMA_ENDPOINT"], api_key="nokeyneeded")
MODEL_NAME = os.environ["OLLAMA_MODEL"]
else:
client = openai.OpenAI(api_key=os.environ["OPENAI_KEY"])
MODEL_NAME = os.environ["OPENAI_MODEL"]
tools = [
{
"type": "function",
"name": "lookup_weather",
"description": "Lookup the weather for a given city name or zip code.",
"parameters": {
"type": "object",
"properties": {
"city_name": {
"type": "string",
"description": "The city name",
},
"zip_code": {
"type": "string",
"description": "The zip code",
},
},
"additionalProperties": False,
},
},
{
"type": "function",
"name": "lookup_movies",
"description": "Lookup movies playing in a given city name or zip code.",
"parameters": {
"type": "object",
"properties": {
"city_name": {
"type": "string",
"description": "The city name",
},
"zip_code": {
"type": "string",
"description": "The zip code",
},
},
"additionalProperties": False,
},
},
]
# ---------------------------------------------------------------------------
# Tool (function) implementations
# ---------------------------------------------------------------------------
def lookup_weather(city_name: str | None = None, zip_code: str | None = None) -> str:
"""Looks up the weather for given city_name and zip_code."""
location = city_name or zip_code or "unknown"
# In a real implementation, call an external weather API here.
return {
"location": location,
"condition": "rain showers",
"rain_mm_last_24h": 7,
"recommendation": "Good day for indoor activities if you dislike drizzle.",
}
def lookup_movies(city_name: str | None = None, zip_code: str | None = None) -> str:
"""Returns a list of movies playing in the given location."""
location = city_name or zip_code or "unknown"
# A real implementation could query a cinema listings API.
return {
"location": location,
"movies": [
{"title": "The Quantum Reef", "rating": "PG-13"},
{"title": "Storm Over Harbour Bay", "rating": "PG"},
{"title": "Midnight Koala", "rating": "R"},
],
}
tool_mapping = {
"lookup_weather": lookup_weather,
"lookup_movies": lookup_movies,
}
# ---------------------------------------------------------------------------
# Conversation loop
# ---------------------------------------------------------------------------
messages = [
{"role": "system", "content": "You are a tourism chatbot."},
{"role": "user", "content": "Is it rainy enough in Sydney to watch movies and which ones are on?"},
]
print(f"Model: {MODEL_NAME} on Host: {API_HOST}\n")
while True:
print("Calling model...\n")
response = client.responses.create(
model=MODEL_NAME,
input=messages, # includes prior tool outputs
tools=tools,
tool_choice="auto",
store=False,
)
tool_calls = [item for item in response.output if item.type == "function_call"]
# If the assistant returned standard content with no tool calls, we're done.
if not tool_calls:
print("Assistant:")
print(response.output_text)
break
# Append the function call items from response output
messages.extend(response.output)
# Execute each requested tool sequentially.
for tool_call in tool_calls:
fn_name = tool_call.name
raw_args = tool_call.arguments or "{}"
print(f"Tool request: {fn_name}({raw_args})")
target_tool = tool_mapping.get(fn_name)
parsed_args = json.loads(raw_args)
tool_result = target_tool(**parsed_args)
tool_result_str = json.dumps(tool_result)
# Provide the tool output back to the model
messages.append(
{
"type": "function_call_output",
"call_id": tool_call.call_id,
"output": tool_result_str,
}
)