forked from RaiAnsar/claude_code-multi-AI-MCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcredentials.template.json
More file actions
50 lines (50 loc) · 1.6 KB
/
credentials.template.json
File metadata and controls
50 lines (50 loc) · 1.6 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
44
45
46
47
48
49
50
{
"gemini": {
"api_key": "YOUR_GEMINI_API_KEY_HERE",
"model": "gemini-2.0-flash",
"enabled": false,
"note": "Get free API key from https://aistudio.google.com/apikey",
"available_models": ["gemini-2.0-flash", "gemini-2.0-flash-exp", "gemini-1.5-pro"]
},
"grok": {
"api_key": "YOUR_GROK_API_KEY_HERE",
"model": "grok-3",
"base_url": "https://api.x.ai/v1",
"enabled": false,
"note": "Get API key from https://console.x.ai/",
"available_models": ["grok-3", "grok-2"]
},
"openai": {
"api_key": "YOUR_OPENAI_API_KEY_HERE",
"model": "gpt-4o",
"enabled": false,
"note": "Get API key from https://platform.openai.com/api-keys",
"available_models": ["gpt-4o", "gpt-4o-mini", "gpt-4-turbo", "gpt-3.5-turbo"]
},
"deepseek": {
"api_key": "YOUR_DEEPSEEK_API_KEY_HERE",
"model": "deepseek-chat",
"base_url": "https://api.deepseek.com",
"enabled": false,
"note": "Get API key from https://platform.deepseek.com/",
"available_models": ["deepseek-chat", "deepseek-coder"]
},
"openrouter": {
"api_key": "YOUR_OPENROUTER_API_KEY_HERE",
"model": "openai/gpt-4o",
"base_url": "https://openrouter.ai/api/v1",
"enabled": false,
"note": "Get API key from https://openrouter.ai/keys",
"available_models": [
"openai/gpt-4o",
"openai/gpt-4o-mini",
"anthropic/claude-3.5-sonnet",
"anthropic/claude-3-opus",
"google/gemini-pro-1.5",
"meta-llama/llama-3.1-405b-instruct",
"mistralai/mistral-large",
"deepseek/deepseek-chat",
"perplexity/llama-3.1-sonar-huge-128k-online"
]
}
}