mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 04:18:05 +00:00
ANTHROPIC_DEFAULT_HAIKU_MODEL in base-codex.settings.json is set to gpt-5-mini which is not routable on the codex CLIProxy endpoint, causing 502 'unknown provider for model gpt-5-mini' when Claude Code spawns subagents at the haiku tier. The correct model ID is gpt-5-codex-mini (confirmed via /v1/models). Ref: #602
11 lines
345 B
JSON
11 lines
345 B
JSON
{
|
|
"env": {
|
|
"ANTHROPIC_BASE_URL": "http://127.0.0.1:8317/api/provider/codex",
|
|
"ANTHROPIC_AUTH_TOKEN": "ccs-internal-managed",
|
|
"ANTHROPIC_MODEL": "gpt-5.3-codex",
|
|
"ANTHROPIC_DEFAULT_OPUS_MODEL": "gpt-5.3-codex",
|
|
"ANTHROPIC_DEFAULT_SONNET_MODEL": "gpt-5.3-codex",
|
|
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "gpt-5-codex-mini"
|
|
}
|
|
}
|