mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-19 21:41:37 +00:00
feat(openai): default new setups to GPT-5.6 (#103581)
* feat(openai): default fresh setup to GPT-5.6 * test(crestodian): expect GPT-5.6 Codex defaults * test(crestodian): expect GPT-5.6 bootstrap default
This commit is contained in:
committed by
GitHub
parent
fc60a8e66b
commit
ab5d143d59
@@ -91,8 +91,8 @@ if (!hasHarness) {
|
||||
}
|
||||
|
||||
const primaryModel = cfg.agents?.defaults?.model?.primary;
|
||||
if (primaryModel !== "openai/gpt-5.5") {
|
||||
throw new Error(`expected OpenAI onboarding model openai/gpt-5.5, got ${primaryModel}`);
|
||||
if (primaryModel !== "openai/gpt-5.6") {
|
||||
throw new Error(`expected OpenAI onboarding model openai/gpt-5.6, got ${primaryModel}`);
|
||||
}
|
||||
const providerRuntime = cfg.models?.providers?.openai?.agentRuntime?.id;
|
||||
if (providerRuntime && providerRuntime !== "codex") {
|
||||
|
||||
Reference in New Issue
Block a user