-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunction_desc.json
More file actions
33 lines (33 loc) · 994 Bytes
/
Copy pathfunction_desc.json
File metadata and controls
33 lines (33 loc) · 994 Bytes
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
[
{
"name": "fifa_worldcup_2022_info",
"description": "Get the brief summary of the 2022 FIFA World Cup hosted in Qatar",
"parameters": {
"type": "object",
"properties": {},
"required": []
}
},
{
"name": "get_current_weather",
"description": "Get the current weather in a given location by latitude and longitude",
"parameters": {
"type": "object",
"properties": {
"lat": {
"type": "string",
"description": "Latitude of the location"
},
"lon": {
"type": "string",
"description": "Longitude of the location"
},
"units": {
"type": "string",
"enum": ["standard", "imperial", "metric"]
}
},
"required": ["lat", "lon"]
}
}
]