-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.potrc.json.example
More file actions
42 lines (42 loc) · 1.01 KB
/
.potrc.json.example
File metadata and controls
42 lines (42 loc) · 1.01 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
{
"generators": [
{
"name": "xAI",
"model": "grok-4-1-fast",
"baseUrl": "https://api.x.ai/v1/chat/completions",
"apiKey": "YOUR_XAI_API_KEY"
},
{
"name": "Moonshot",
"model": "kimi-k2.5",
"baseUrl": "https://api.moonshot.ai/v1/chat/completions",
"apiKey": "YOUR_MOONSHOT_API_KEY"
},
{
"name": "Anthropic",
"model": "claude-sonnet-4-5-20250929",
"provider": "anthropic",
"apiKey": "YOUR_ANTHROPIC_API_KEY"
},
{
"name": "DeepSeek",
"model": "deepseek-chat",
"baseUrl": "https://api.deepseek.com/chat/completions",
"apiKey": "YOUR_DEEPSEEK_API_KEY"
}
],
"critic": {
"name": "Anthropic",
"model": "claude-opus-4-6",
"provider": "anthropic",
"apiKey": "YOUR_ANTHROPIC_API_KEY"
},
"synthesizer": {
"name": "Anthropic",
"model": "claude-opus-4-6",
"provider": "anthropic",
"apiKey": "YOUR_ANTHROPIC_API_KEY"
},
"blockStoragePath": "./blocks",
"language": "en"
}