fix(model-capabilities): add gpt-5.5 capability snapshot

Adds missing capability entry for gpt-5.5 to supplemental-entries.ts.

This model was promoted as default for oracle, hephaestus, and deep agents,

but the capability snapshot was missing, causing resolution failures.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-04-24 16:17:37 +09:00
parent 3875b40c17
commit 6b46b9b4be
@@ -17,4 +17,20 @@ export const SUPPLEMENTAL_MODEL_CAPABILITIES: Record<string, ModelCapabilitiesSn
output: 128000,
},
},
"gpt-5.5": {
id: "gpt-5.5",
family: "gpt",
reasoning: true,
temperature: false,
toolCall: true,
modalities: {
input: ["text", "image", "pdf"],
output: ["text"],
},
limit: {
context: 400000,
input: 272000,
output: 128000,
},
},
}