-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathConfig.json
74 lines (74 loc) · 2 KB
/
Config.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "LLM SuperSet",
"icon": "iconify:logos:openai-icon",
"identifier": "orefalo.popclip.extension.chatgpt-superset",
"description": "Send the selected text to your preferred LLM and pastes the response. Hold Shift (⇧) to copy the response to the clipboard.",
"note": "To use this extension you will need API keys from the respective providers",
"app": {
"name": "ChatGPT",
"link": "https://openai.com/blog/chatgpt"
},
"popclipVersion": 4069,
"module": "llm-superset.js",
"entitlements": ["network"],
"options": [
{
"identifier": "apikey",
"label": "OpenAI API Key",
"type": "string",
"description": "Obtain an API key from: https://platform.openai.com/account/api-keys"
},
{
"identifier": "claudeapikey",
"label": "Claude API Key",
"type": "string",
"description": "Obtain an API key from: https://console.anthropic.com/settings/keys"
},
{
"identifier": "tone",
"label": "Answer tone",
"type": "multiple",
"defaultValue": "professional",
"values": ["concise", "professional", "friendly"],
"description": "Default tone used for drafting responses"
},
{
"identifier": "model",
"label": "AI model",
"type": "multiple",
"defaultValue": "gpt-4o",
"values": [
"gpt-4o",
"claude-3-5-sonnet-latest",
"gpt-4o-mini",
"gpt-4",
"gpt-4-turbo",
"claude-3-5-haiku-latest",
"gpt-3.5-turbo",
"o1-preview",
"o1-mini"
],
"description": "The OpenAI model to use"
},
{
"identifier": "tolang",
"label": "Language",
"type": "multiple",
"values": [
"English",
"Mandarin Chinese",
"Spanish",
"French",
"German",
"Russian",
"Português",
"Italian",
"Polish",
"Ukrainian",
"Dutch"
],
"defaultValue": "French",
"description": "The target translation language"
}
]
}