-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathplugin.json
30 lines (30 loc) · 840 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
{
"name": "internet",
"avatar": "https://ais.ninja/plugin/internet.svg",
"variables": {
"CHROME_BIN": "Your chrome bin path, for example: /usr/bin/chromium"
},
"functions": [
{
"name": "access_internet",
"description": "Access network content through url and return the web page text content of url",
"parameters": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "url to access, for example: https://ais.ninja"
},
"filter": {
"type": "string",
"description": "a prompt to provide gpt-3 to filter the content, only the content that contains the filter will be returned"
}
},
"required": [
"url",
"filter"
]
}
}
]
}