Add opencode.json config template with changeme API keys

This commit is contained in:
2026-05-11 23:09:09 +02:00
parent dc65e59611
commit 515595495e

59
opencode.json Normal file
View File

@@ -0,0 +1,59 @@
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"swift": {
"npm": "@ai-sdk/anthropic",
"name": "Odin",
"options": {
"baseURL": "http://192.168.2.49:12000/v1",
"apiKey": "changeme"
},
"models": {
"mlx-community/Qwen3-Coder-Next-4bit": {
"name": "Odin Swift",
"tool_call": true,
"options": {
"temperature": 1.0,
"top_p": 0.95
}
}
}
},
"forge": {
"npm": "@ai-sdk/anthropic",
"name": "Odin",
"options": {
"baseURL": "http://192.168.2.49:12001/v1",
"apiKey": "changeme"
},
"models": {
"mlx-community/Qwen3-Coder-Next-6bit": {
"name": "Odin Forge",
"tool_call": true,
"options": {
"temperature": 1.0,
"top_p": 0.95
}
}
}
},
"atlas": {
"npm": "@ai-sdk/anthropic",
"name": "Odin",
"options": {
"baseURL": "http://192.168.2.49:12002/v1",
"apiKey": "changeme"
},
"models": {
"mlx-community/Qwen3.5-35B-A3B-6bit": {
"name": "Odin Atlas",
"tool_call": true,
"options": {
"temperature": 1.0,
"top_p": 0.95
}
}
}
}
}
}