Files
opencode/.opencode/opencode.jsonc
T
Artur Do Lago 171e2db8b3 feat(personas): add model config, TUI banner, and fallback system
- Configure per-persona models with temperature/top_p:
  - Zee: cerebras/zai-glm-4.7 (0.8/0.9)
  - Stanley: openrouter/xai/grok-4.1-fast (0.7/0.85)
  - Johny: antigravity/claude-opus-4-5 (0.8/0.9)
- Configure internal agents:
  - title: cerebras/gpt-oss-120b (0.5)
  - compaction: antigravity/gemini-3-flash (0.3)
- Add ASCII art banner on startup with Tab switching
- Sort agents reverse alphabetically (Zee, Stanley, Johny)
- Add provider fallback system with circuit breaker

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 11:53:04 +01:00

27 lines
574 B
JSON

{
"$schema": "https://opencode.ai/config.json",
"model": "cerebras/qwen-3-235b-a22b-instruct-2507",
"small_model": "cerebras/gpt-oss-120b",
"instructions": ["STYLE_GUIDE.md"],
"mcp": {
"context7": {
"type": "remote",
"url": "https://mcp.context7.com/mcp",
},
},
"tools": {
"github-triage": false,
"github-pr-search": false,
},
"agent": {
"title": {
"model": "cerebras/gpt-oss-120b",
"temperature": 0.5
},
"compaction": {
"model": "antigravity/gemini-3-flash",
"temperature": 0.3
}
},
}