|
| 1 | +import json |
| 2 | +import os |
| 3 | + |
| 4 | +import azure.identity |
| 5 | +import openai |
| 6 | +from dotenv import load_dotenv |
| 7 | + |
| 8 | +# Setup the OpenAI client to use either Azure, OpenAI.com, or Ollama API |
| 9 | +load_dotenv(override=True) |
| 10 | +API_HOST = os.getenv("API_HOST", "github") |
| 11 | + |
| 12 | +if API_HOST == "azure": |
| 13 | + token_provider = azure.identity.get_bearer_token_provider( |
| 14 | + azure.identity.DefaultAzureCredential(), "https://cognitiveservices.azure.com/.default" |
| 15 | + ) |
| 16 | + client = openai.AzureOpenAI( |
| 17 | + api_version=os.environ["AZURE_OPENAI_VERSION"], |
| 18 | + azure_endpoint=os.environ["AZURE_OPENAI_ENDPOINT"], |
| 19 | + azure_ad_token_provider=token_provider, |
| 20 | + ) |
| 21 | + MODEL_NAME = os.environ["AZURE_OPENAI_DEPLOYMENT"] |
| 22 | + |
| 23 | +elif API_HOST == "ollama": |
| 24 | + client = openai.OpenAI(base_url=os.environ["OLLAMA_ENDPOINT"], api_key="nokeyneeded") |
| 25 | + MODEL_NAME = os.environ["OLLAMA_MODEL"] |
| 26 | + |
| 27 | +elif API_HOST == "github": |
| 28 | + client = openai.OpenAI(base_url="https://models.inference.ai.azure.com", api_key=os.environ["GITHUB_TOKEN"]) |
| 29 | + MODEL_NAME = os.getenv("GITHUB_MODEL", "gpt-4o") |
| 30 | + |
| 31 | +else: |
| 32 | + client = openai.OpenAI(api_key=os.environ["OPENAI_KEY"]) |
| 33 | + MODEL_NAME = os.environ["OPENAI_MODEL"] |
| 34 | + |
| 35 | + |
| 36 | +def lookup_weather(city_name=None, zip_code=None): |
| 37 | + """Lookup the weather for a given city name or zip code.""" |
| 38 | + return { |
| 39 | + "city_name": city_name, |
| 40 | + "zip_code": zip_code, |
| 41 | + "weather": "sunny", |
| 42 | + "temperature": 75, |
| 43 | + } |
| 44 | + |
| 45 | + |
| 46 | +tools = [ |
| 47 | + { |
| 48 | + "type": "function", |
| 49 | + "function": { |
| 50 | + "name": "lookup_weather", |
| 51 | + "description": "Lookup the weather for a given city name or zip code.", |
| 52 | + "parameters": { |
| 53 | + "type": "object", |
| 54 | + "properties": { |
| 55 | + "city_name": { |
| 56 | + "type": "string", |
| 57 | + "description": "The city name", |
| 58 | + }, |
| 59 | + "zip_code": { |
| 60 | + "type": "string", |
| 61 | + "description": "The zip code", |
| 62 | + }, |
| 63 | + }, |
| 64 | + "strict": True, |
| 65 | + "additionalProperties": False, |
| 66 | + }, |
| 67 | + }, |
| 68 | + } |
| 69 | +] |
| 70 | + |
| 71 | +messages = [ |
| 72 | + {"role": "system", "content": "You are a weather chatbot."}, |
| 73 | + {"role": "user", "content": "is it sunny in berkeley CA?"}, |
| 74 | +] |
| 75 | +response = client.chat.completions.create( |
| 76 | + model=MODEL_NAME, |
| 77 | + messages=messages, |
| 78 | + tools=tools, |
| 79 | + tool_choice="auto", |
| 80 | +) |
| 81 | + |
| 82 | +print(f"Response from {MODEL_NAME} on {API_HOST}: \n") |
| 83 | + |
| 84 | +# Now actually call the function as indicated |
| 85 | + |
| 86 | +if response.choices[0].message.tool_calls: |
| 87 | + tool_call = response.choices[0].message.tool_calls[0] |
| 88 | + function_name = tool_call.function.name |
| 89 | + arguments = json.loads(tool_call.function.arguments) |
| 90 | + |
| 91 | + if function_name == "lookup_weather": |
| 92 | + messages.append(response.choices[0].message) |
| 93 | + result = lookup_weather(**arguments) |
| 94 | + messages.append({"role": "tool", "tool_call_id": tool_call.id, "content": str(result)}) |
| 95 | + response = client.chat.completions.create(model=MODEL_NAME, messages=messages, tools=tools) |
| 96 | + print(response.choices[0].message.content) |
0 commit comments