-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
38 lines (38 loc) · 971 Bytes
/
config.example.json
File metadata and controls
38 lines (38 loc) · 971 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
32
33
34
35
36
37
38
{
"hotkey": "Ctrl+Space",
"targetLang": "Mongolian",
"defaultProviderId": "prov-ollama",
"providers": [
{
"id": "prov-openai",
"label": "OpenAI (prod)",
"type": "openai",
"apiBase": "https://api.openai.com/v1",
"apiKeyEnv": "OPENAI_API_KEY",
"model": "gpt-4o-mini"
},
{
"id": "prov-compat",
"label": "OpenAI-Compatible (local)",
"type": "openaiCompatible",
"apiBase": "http://localhost:11434/v1",
"apiKeyEnv": "OPENAI_COMPAT_KEY",
"model": "gpt-4o-mini"
},
{
"id": "prov-ollama",
"label": "Ollama (localhost)",
"type": "ollama",
"apiBase": "http://localhost:11434",
"model": "gemma3:27b"
},
{
"id": "prov-gemini",
"label": "Gemini (Google AI Studio)",
"type": "gemini",
"apiBase": "https://generativelanguage.googleapis.com",
"apiKeyEnv": "GEMINI_API_KEY",
"model": "gemini-2.5-flash"
}
]
}