mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 12:15:57 +00:00
fix(config): use correct codex haiku model ID (gpt-5-codex-mini)
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
This commit is contained in:
@@ -5,6 +5,6 @@
|
||||
"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-mini"
|
||||
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "gpt-5-codex-mini"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user