mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-29 04:57:09 +02:00
3.7 KiB
3.7 KiB
summary, read_when, title
| summary | read_when | title | ||
|---|---|---|---|---|
| Use the OpenCode Go catalog with the shared OpenCode setup |
|
OpenCode Go |
OpenCode Go is the Go catalog within OpenCode.
It uses the same OPENCODE_API_KEY as the Zen catalog, but keeps the runtime
provider id opencode-go so upstream per-model routing stays correct.
| Property | Value |
|---|---|
| Runtime provider | opencode-go |
| Auth | OPENCODE_API_KEY |
| Parent setup | OpenCode |
Built-in catalog
OpenClaw sources the Go catalog from the bundled pi model registry. Run
openclaw models list --provider opencode-go for the current model list.
As of the bundled pi catalog, the provider includes:
| Model ref | Name |
|---|---|
opencode-go/glm-5 |
GLM-5 |
opencode-go/glm-5.1 |
GLM-5.1 |
opencode-go/kimi-k2.5 |
Kimi K2.5 |
opencode-go/kimi-k2.6 |
Kimi K2.6 (3x limits) |
opencode-go/mimo-v2-omni |
MiMo V2 Omni |
opencode-go/mimo-v2-pro |
MiMo V2 Pro |
opencode-go/minimax-m2.5 |
MiniMax M2.5 |
opencode-go/minimax-m2.7 |
MiniMax M2.7 |
opencode-go/qwen3.5-plus |
Qwen3.5 Plus |
opencode-go/qwen3.6-plus |
Qwen3.6 Plus |
Getting started
```bash openclaw onboard --auth-choice opencode-go ``` ```bash openclaw config set agents.defaults.model.primary "opencode-go/kimi-k2.5" ``` ```bash openclaw models list --provider opencode-go ``` ```bash openclaw onboard --opencode-go-api-key "$OPENCODE_API_KEY" ``` ```bash openclaw models list --provider opencode-go ```Config example
{
env: { OPENCODE_API_KEY: "YOUR_API_KEY_HERE" }, // pragma: allowlist secret
agents: { defaults: { model: { primary: "opencode-go/kimi-k2.5" } } },
}