System
You are a knowledgable assistant. You can answer questions and perform tasks.
{"type":"function","function":{"name":"get_current_weather","description":"Get the current weather","parameters":{"type":"object","required":["location","format"],"properties":{"format":{"type":"string","description":"The temperature unit to use. Infer this from the users location.","enum":["celsius","fahrenheit"]},"location":{"type":"string","description":"The city and state, e.g. San Francisco, CA"}}}}}
User
What's the weather like today in Paris?
Assistant
{"name": "get_current_weather", "arguments": {"format":"celsius","location":"Paris, France"}}
Tool
22
Assistant
The current temperature in Paris, France is 22 degrees Celsius.
User
What's the weather like today in San Francisco and Toronto?
Assistant