Files
stack/docker/openclaw-instances/jarvis-projects.json
Jason Woltje 50f0dc6018
All checks were successful
ci/woodpecker/push/infra Pipeline was successful
Revert "fix(docker): use envsubst template pattern — no hardcoded URLs or keys (MS22-P1a)"
This reverts commit 11136e2f23.
2026-03-01 07:55:32 -06:00

40 lines
857 B
JSON

{
"gateway": {
"mode": "local",
"port": 18789,
"bind": "lan",
"auth": { "mode": "token" },
"http": {
"endpoints": {
"chatCompletions": { "enabled": true }
}
}
},
"agents": {
"defaults": {
"workspace": "/home/node/workspace",
"model": { "primary": "zai/glm-5" }
}
},
"models": {
"mode": "merge",
"providers": {
"ollama": {
"baseUrl": "http://10.1.1.42:11434/v1",
"api": "openai-completions",
"models": [
{
"id": "cogito",
"name": "Cogito (Local Reasoning)",
"reasoning": false,
"input": ["text"],
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
"contextWindow": 128000,
"maxTokens": 8192
}
]
}
}
}
}