forked from CodebuffAI/freebuff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenbuff.json.example
More file actions
8 lines (8 loc) · 989 Bytes
/
Copy pathopenbuff.json.example
File metadata and controls
8 lines (8 loc) · 989 Bytes
1
2
3
4
5
6
7
8
{
"includes": [
"openbuff.d/providers.json",
"openbuff.d/routes.json",
"openbuff.d/indexing.json"
],
"_comment_agents_modelOverride": "All agents including the orchestrator (base2) are BYOK-routed via openbuff.json — no hardcoded fallback. Configure defaultModel for every agent, modes for base2 variants, and agents for per-agent overrides (including the orchestrator and cheaper subagents like file-picker/code-searcher). Example: { \"defaultModel\": \"openai/gpt-5.5\", \"modes\": { \"default\": \"openai/gpt-5.5\" }, \"agents\": { \"base2\": { \"model\": \"openai/gpt-5.5\" }, \"file-picker\": { \"model\": \"anthropic/claude-haiku-4.5\" }, \"code-searcher\": { \"model\": \"anthropic/claude-haiku-4.5\" } } } — when no route exists for an agent, sdk/src/impl/model-provider.ts:resolveConfiguredAgentModelConfig hard-errors (priority: modes -> agents[agentId] -> defaultModel -> explicit model -> hard error; see docs/configuration.md and docs/local-mode.md)."
}