Skip to content

Commit 8d88bde

Browse files
committed
chat: get-location-plus-offset function json
1 parent 615820f commit 8d88bde

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"type": "function",
3+
"function": {
4+
"name": "get_location_plus_offset",
5+
"description": "Calculate the latitude and longitude given an existing latitude and longitude and distances (in meters) North and East",
6+
"parameters": {
7+
"type": "object",
8+
"properties": {
9+
"latitude": {"type": "number", "description": "latitude in degrees"},
10+
"longitude": {"type": "number", "description": "longitude in degrees"},
11+
"distance_north": {"type": "number", "description": "distance to move North in meters"},
12+
"distance_east": {"type": "number", "description": "distance to move East in meters"}
13+
},
14+
"required": ["latitude", "longitude", "distance_north", "distance_east"]
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)