-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathstructured_outputs_function_calling.py
More file actions
49 lines (38 loc) · 1.54 KB
/
structured_outputs_function_calling.py
File metadata and controls
49 lines (38 loc) · 1.54 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
import os
import azure.identity
import openai
import rich
from dotenv import load_dotenv
from pydantic import BaseModel
# Setup the OpenAI client to use either Azure, OpenAI.com, or Ollama API
load_dotenv(override=True)
API_HOST = os.getenv("API_HOST", "github")
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=os.environ["AZURE_OPENAI_ENDPOINT"],
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"]
elif API_HOST == "github":
client = openai.OpenAI(base_url="https://models.github.ai/inference", api_key=os.environ["GITHUB_TOKEN"])
MODEL_NAME = os.getenv("GITHUB_MODEL", "openai/gpt-4o")
else:
client = openai.OpenAI(api_key=os.environ["OPENAI_KEY"])
MODEL_NAME = os.environ["OPENAI_MODEL"]
class GetDeliveryDate(BaseModel):
order_id: str
response = client.chat.completions.create(
model=MODEL_NAME,
messages=[
{"role": "system", "content": "You're a customer support bot. Use the tools to assist the user."},
{"role": "user", "content": "Hi, can you tell me the delivery date for my order #12345?"},
],
tools=[openai.pydantic_function_tool(GetDeliveryDate)],
)
rich.print(response.choices[0].message.tool_calls[0].function)