-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.jsonc
More file actions
77 lines (77 loc) · 1.98 KB
/
Copy pathopencode.jsonc
File metadata and controls
77 lines (77 loc) · 1.98 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"$schema": "https://opencode.ai/config.json",
"model": "github-models/openai/gpt-5",
"small_model": "github-models/deepseek/deepseek-v3-0324",
"enabled_providers": ["github-models"],
"mcp": {
"codegraph": {
"type": "local",
"command": ["npx", "-y", "@colbymchenry/codegraph@0.9.9", "serve", "--mcp"],
"enabled": true
},
"deepwiki": {
"type": "remote",
"url": "https://mcp.deepwiki.com/mcp",
"enabled": true,
"timeout": 10000
},
"context7": {
"type": "local",
"command": ["npx", "-y", "@upstash/context7-mcp@3.1.0", "--transport", "stdio"],
"enabled": true,
"timeout": 10000,
"environment": {
"NPM_CONFIG_IGNORE_SCRIPTS": "true",
"NPM_CONFIG_LOGLEVEL": "error"
}
},
"web_search": {
"type": "local",
"command": ["npx", "-y", "@guhcostan/web-search-mcp@1.0.5"],
"enabled": true,
"timeout": 10000,
"environment": {
"NPM_CONFIG_IGNORE_SCRIPTS": "true",
"NPM_CONFIG_LOGLEVEL": "error"
}
}
},
"provider": {
"github-models": {
"npm": "@ai-sdk/openai-compatible",
"name": "GitHub Models",
"options": {
"baseURL": "https://models.github.ai/inference",
"apiKey": "{env:STRIX_GITHUB_MODELS_TOKEN}"
},
"models": {
"openai/gpt-5": {
"name": "OpenAI GPT-5",
"tool_call": true,
"reasoning": true,
"limit": {
"context": 200000,
"output": 100000
}
},
"deepseek/deepseek-r1-0528": {
"name": "DeepSeek R1 0528",
"tool_call": true,
"reasoning": true,
"limit": {
"context": 128000,
"output": 4096
}
},
"deepseek/deepseek-v3-0324": {
"name": "DeepSeek V3 0324",
"tool_call": true,
"limit": {
"context": 128000,
"output": 4096
}
}
}
}
}
}