-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathopenai_tool_calling.py
More file actions
98 lines (86 loc) · 2.89 KB
/
openai_tool_calling.py
File metadata and controls
98 lines (86 loc) · 2.89 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
import json
import os
import azure.identity
import openai
from dotenv import load_dotenv
from rich import print
# Configure OpenAI client based on environment
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']}/openai/v1/",
api_key=token_provider,
)
MODEL_NAME = os.environ["AZURE_OPENAI_CHAT_DEPLOYMENT"]
else:
client = openai.OpenAI(api_key=os.environ["OPENAI_API_KEY"])
MODEL_NAME = os.environ.get("OPENAI_MODEL", "gpt-5.4")
def lookup_weather(city_name: str | None = None, zip_code: str | None = None) -> dict:
"""Lookup the weather for a given city name or zip code."""
print(f"Looking up weather for {city_name or zip_code}...\n")
return {
"city_name": city_name,
"zip_code": zip_code,
"weather": "sunny",
"temperature": 75,
}
tools = [
{
"type": "function",
"name": "lookup_weather",
"description": "Lookup the weather for a given city name or zip code.",
"strict": True,
"parameters": {
"type": "object",
"properties": {
"city_name": {
"type": ["string", "null"],
"description": "The city name",
},
"zip_code": {
"type": ["string", "null"],
"description": "The zip code",
},
},
"required": ["city_name", "zip_code"],
"additionalProperties": False,
},
}
]
messages = [
{"role": "system", "content": "You are a weather chatbot."},
{"role": "user", "content": "is it sunny in LA, CA?"},
]
response = client.responses.create(
model=MODEL_NAME,
input=messages,
tools=tools,
tool_choice="auto",
store=False,
)
# Now actually call the function as indicated
function_calls = [item for item in response.output if item.type == "function_call"]
if function_calls:
tool_call = function_calls[0]
function_name = tool_call.name
function_arguments = json.loads(tool_call.arguments)
print(function_name)
print(function_arguments)
if function_name == "lookup_weather":
result = lookup_weather(**function_arguments)
messages.extend(response.output)
messages.append({"type": "function_call_output", "call_id": tool_call.call_id, "output": json.dumps(result)})
response = client.responses.create(
model=MODEL_NAME,
input=messages,
tools=tools,
store=False,
)
print(f"Response from {MODEL_NAME} on {API_HOST}:")
print(response.output_text)
else:
print(response.output_text)