-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtalicode.json
More file actions
33 lines (33 loc) · 867 Bytes
/
Copy pathtalicode.json
File metadata and controls
33 lines (33 loc) · 867 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
{
"default_mode": "craft",
"default_model": "llama-3.1-8b-instant",
"trust_level": "safe-write",
"session_dir": ".talicode/sessions",
"data_dir": ".talicode",
"providers": [
{
"name": "groq",
"type": "cloud",
"api_style": "openai_compatible",
"base_url": "https://api.groq.com/openai/v1",
"api_key_env": "GROQ_API_KEY",
"models": ["llama-3.1-8b-instant"]
},
{
"name": "openai",
"type": "cloud",
"api_style": "openai_compatible",
"base_url": "https://api.openai.com/v1",
"api_key_env": "OPENAI_API_KEY",
"models": ["gpt-4.1-mini"]
},
{
"name": "anthropic",
"type": "cloud",
"api_style": "anthropic",
"base_url": "https://api.anthropic.com",
"api_key_env": "ANTHROPIC_API_KEY",
"models": ["claude-3-5-sonnet-latest"]
}
]
}