-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
41 lines (41 loc) · 1.61 KB
/
plugin.json
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
{
"id": "get_geocode",
"uuid": "6381f8c3-8531-47ff-8108-948339c5c28a",
"title": "Get Geocoded Location",
"openaiSpec": {
"name": "get_geocode",
"description": "Retrieve the geocoded location of a specified location, for example, the latitude and longitude of a city. Can also return the timezone, population and elevation of the specified location.",
"parameters": {
"type": "object",
"required": [
"location"
],
"properties": {
"language": {
"type": "string",
"default": "en",
"description": "The language for the location search. Use ISO 639-1 two-letter language codes (e.g., 'en' for English, 'es' for Spanish)."
},
"location": {
"type": "string",
"description": "The name of the location to search for. If a state is provided, spell out the full name (e.g., Texas instead of TX). The location is always treated as a city by default."
}
},
"additionalProperties": false
}
},
"outputType": "respond_to_ai",
"oauthConfig": null,
"userSettings": [
{
"name": "count",
"type": "integer",
"label": "Number of results",
"description": "The number of results to return for location searches. Default: 100.",
"defaultValue": "100"
}
],
"authenticationType": "AUTH_TYPE_NONE",
"implementationType": "javascript",
"dynamicContextEndpoints": []
}