forked from TypingMind/plugin-web-page-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
31 lines (31 loc) · 768 Bytes
/
plugin.json
File metadata and controls
31 lines (31 loc) · 768 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
{
"id": "read_web_page_content",
"uuid": "aa2ebdf6-564e-4994-8d30-1b9f13f9518a",
"userSettings": [
{
"name": "pluginServer",
"label": "Plugin Server",
"placeholder": "https://...",
"description": "The URL of the plugin server",
"required": true
}
],
"emoji": "📃",
"title": "Web Page Reader",
"openaiSpec": {
"name": "read_web_page_content",
"parameters": {
"type": "object",
"required": ["url"],
"properties": {
"url": {
"type": "string",
"description": "URL of the article to be summarized"
}
}
},
"description": "Read the content of a web page via its URL."
},
"implementationType": "javascript",
"outputType": "respond_to_ai"
}