-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
43 lines (43 loc) · 1.69 KB
/
Copy pathplugin.json
File metadata and controls
43 lines (43 loc) · 1.69 KB
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
42
43
{
"id": "extract_info_from_web_page",
"uuid": "2bdd1547-ab4a-42f6-9ded-b59de84ec044",
"emoji": "📖",
"title": "Extract Web Page",
"iconURL": "https://custom.typingmind.com/assets/plugins/extract-web-page.webp",
"mcpDetails": null,
"openaiSpec": {
"name": "extract_info_from_web_page",
"parameters": {
"type": "object",
"required": [
"url",
"question"
],
"properties": {
"url": {
"type": "string",
"description": "The URL to extract information from."
},
"question": {
"type": "string",
"description": "The information you would like to get from the web page URL. Provide exact and specific information for best result."
}
}
},
"description": "Collect a piece of data from a web URL. Use this plugin when you need to get specific information from long web pages. The extract process is done in the background and can handle web pages with large content. Use this plugin when you need to find specific information from a website URL."
},
"outputType": "respond_to_ai",
"oauthConfig": null,
"userSettings": [
{
"name": "firecrawlAPIKey",
"label": "Firecrawl API Key",
"required": true,
"type": "password",
"description": "Enter your Firecrawl API key. You can create one at https://www.firecrawl.dev/app/api-keys"
}
],
"authenticationType": "AUTH_TYPE_NONE",
"implementationType": "javascript",
"dynamicContextEndpoints": []
}