-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
81 lines (81 loc) · 2.19 KB
/
Copy pathopencode.json
File metadata and controls
81 lines (81 loc) · 2.19 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
78
79
80
81
{
"$schema": "https://opencode.ai/config.json",
"autoupdate": true,
"autoshare": true,
"username": "Kiogreo",
"default_agent": "OpenAgent",
"model": "ollama/gpt-oss:120b-cloud",
"small_model": "ollama/gpt-oss:120b-cloud",
"plugin": [
// "@mohak34/opencode-notifier@latest",
// "@tarquinen/opencode-dcp@latest",
// "@zenobius/opencode-skillful",
"@openspoon/subtask2@latest",
"opencode-websearch-cited@1.2.0", // IMPORTANT: Put opencode-websearch-cited LAST in the plugin list to avoid impacting other plugins' auth process.
],
"compaction": {
"prune": true,
"auto": true
},
"server": {
"mdns": true,
"port": 4096,
"hostname": "127.0.0.1"
},
"skills": {
"paths": [
".opencode/skill",
".opencode/skills"
]
},
"provider": {
"ollama": {
"npm": "@ai-sdk/openai-compatible",
"name": "Ollama (local)",
"options": {
"baseURL": "http://localhost:11434/v1"
},
"models": {
"gpt-oss:120b-cloud": {
"name": "gpt-oss:120b-cloud"
},
"devstral-2:123b-cloud": {
"name": "devstral-2:123b-cloud"
},
"nemotron-3-nano:30b-cloud": {
"name": "nemotron-3-nano:30b-cloud"
},
"qwen3-coder:480b-cloud": {
"name": "qwen3-coder:480b-cloud"
},
"rnj-1:8b-cloud": {
"name": "rnj-1:8b-cloud",
"limit": {
"context": 32768,
"output": 16384
}
}
},
}
},
"mcp": {
"markitdown": {
"enabled": false,
"type": "local",
"command": ["uvx", "--python", "3.10", "markitdown-mcp"]
},
"markdown_rag": {
"enabled": false,
"type": "local",
"command": ["uv", "--directory", "${env:PROJECT_DIR}/.opencode/mcp/MCP-Markdown-RAG", "run", "server.py"]
},
"context7": {
"enabled": false,
"type": "local",
"command": ["npx", "-y", "@upstash/context7-mcp"],
"environment": {
"CONTEXT7_API_KEY": "${env:CONTEXT7_API_KEY}"
}
}
}
}