-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.jsonc
More file actions
98 lines (98 loc) · 2.44 KB
/
Copy pathopencode.jsonc
File metadata and controls
98 lines (98 loc) · 2.44 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"$schema": "https://opencode.ai/config.json",
"share": "disabled",
"enabled_providers": ["llmplatform", "llmplatform-gpt"],
"plugin": [
"opencode-models-discovery@latest",
[
"opencode-mempalace@latest",
{
"mcpCommand": [
"/Users/brian.landers/.local/bin/mempalace-mcp"
]
}
]
],
"mcp": {
"kube-web-view": {
"type": "remote",
"url": "https://kube-web-view.build.ue1.snooguts.net/mcp",
"enabled": true
},
"private-journal": {
"type": "local",
"command": [
"/Users/brian.landers/.nvm/versions/node/v22.22.2/bin/npx",
"-y",
"github:obra/private-journal-mcp"
],
"enabled": true
},
"context7": {
"type": "remote",
"url": "https://mcp.context7.com/mcp",
"enabled": true
},
"cloudflare-docs": {
"type": "remote",
"url": "https://docs.mcp.cloudflare.com/mcp",
"enabled": true
},
"1password": {
"type": "local",
"command": [
"/Applications/1Password.app/Contents/MacOS/onepassword-mcp"
],
"enabled": true
}
},
"provider": {
"llmplatform": {
"npm": "file:///Users/brian.landers/.config/opencode/llmplatform-openai-compatible.mjs",
"name": "LLM Platform",
"options": {
"baseURL": "https://llm-platform.pri.serving-iad-a01.aws.achilles.snooguts.net/v1/openai",
"apiKey": "project/opencode-dev",
"includeUsage": true,
"modelsDiscovery": {
"enabled": true,
"endpoint": "/models",
"models": {
"excludeRegex": [
"^gpt-5",
"^gpt-[6-9]",
"^o[0-9]",
"codex",
"-tts$",
"live-",
"native-audio",
"image-generation",
"embedding"
]
}
}
}
},
"llmplatform-gpt": {
"npm": "@ai-sdk/openai",
"name": "LLM Platform (GPT)",
"options": {
"baseURL": "https://llm-platform.pri.serving-iad-a01.aws.achilles.snooguts.net/v1/openai",
"apiKey": "project/opencode-dev",
"includeUsage": true,
"modelsDiscovery": {
"enabled": true,
"endpoint": "/models",
"models": {
"includeRegex": [
"^gpt-5",
"^gpt-[6-9]",
"^o[0-9]",
"codex"
]
}
}
}
}
}
}