forked from jarvis2f/ais-ninja
-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.json
37 lines (33 loc) · 803 Bytes
/
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
{
"name": "The Movie Database",
"avatar": "https://files.readme.io/29c6fee-blue_short.svg",
"variables": {
"TMDB_API_KEY": "Your API Key"
},
"functions": [
{
"name": "search_movies",
"description": "Query movies from The Movie Database (TMDb)",
"parameters": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The movie or keyword to search for"
},
"page": {
"type": "number",
"description": "The page of results to return"
},
"region": {
"type": "string",
"description": "The region to search within"
}
},
"required": [
"query"
]
}
}
]
}