-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
34 lines (34 loc) · 1.23 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
{
"uuid": "63da964a-a966-443f-beac-3305053336fd",
"id": "render_stack_overflow_search_result",
"iconURL": "https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon.png?v=c78bd457575a",
"title": "Stack Overflow Linker",
"openaiSpec": {
"name": "render_stack_overflow_search_result",
"parameters": {
"type": "object",
"required": [
"keyword"
],
"properties": {
"keyword": {
"type": "string",
"description": "The search keyword"
}
}
},
"description": "Find and view relevant Stack Overflow questions based on a given keyword and obtain the top matched answers for specific questions using the Stack Exchange API"
},
"userSettings": [
{
"name": "stackExchangeKey",
"type": "password",
"label": "Stack Exchange API Key",
"placeholder": "Enter your Stack Exchange API Key",
"description": "Get your API key from https://stackapps.com/apps/oauth/register",
"required": true
}
],
"implementationType": "javascript",
"outputType": "render_html"
}