-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopencode.json.example
More file actions
47 lines (47 loc) · 999 Bytes
/
Copy pathopencode.json.example
File metadata and controls
47 lines (47 loc) · 999 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
39
40
41
42
43
44
45
46
47
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"deepseek": {
"npm": "@ai-sdk/openai-compatible",
"name": "DeepSeek V4",
"options": {
"baseURL": "https://api.deepseek.com/v1",
"apiKey": "{env:DEEPSEEK_API_KEY}"
},
"models": {
"deepseek-v4-pro": {
"name": "DeepSeek V4 Pro"
},
"deepseek-v4-flash": {
"name": "DeepSeek V4 Flash"
},
"deepseek-chat": {
"name": "DeepSeek Chat (legacy)"
}
}
}
},
"agent": {
"default": {
"model": "deepseek/deepseek-v4-pro",
"temperature": 0.7
},
"coder": {
"model": "deepseek/deepseek-v4-pro",
"temperature": 0.5
}
},
"plugin": [
"@ai-sdk/openai-compatible"
],
"permission": {
"bash": "allow",
"glob": "allow",
"grep": "allow",
"read": "allow",
"edit": "allow",
"webSearch": "allow",
"webFetch": "allow",
"task": "allow"
}
}