forked from seofernando25/ulauncher-gpt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
32 lines (32 loc) · 894 Bytes
/
manifest.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
{
"required_api_version": "^2.0.0",
"name": "ChatGPT",
"description": "Create a domain specific assistant using GPT-3.5",
"developer_name": "SeoFernando",
"icon": "images/icon.png",
"options": {
"query_debounce": 2
},
"preferences": [
{
"id": "gpt_kw",
"type": "keyword",
"name": "GPT",
"default_value": "gpt"
},
{
"id": "api_key",
"type": "input",
"name": "OpenAI API Key",
"description": "Api Key",
"default_value": ""
},
{
"id": "api_endpoint",
"type": "input",
"name": "OpenAI Endpoint",
"description": "Something like https://api.openai.com/v1/chat/completions",
"default_value": "https://api.ukn0w.me/v1/chat/completions"
}
]
}