import type { ModelCapabilitiesSnapshotEntry } from "./types" export const SUPPLEMENTAL_MODEL_CAPABILITIES: Record = { "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, }, }, "gpt-5.4-mini-fast": { id: "gpt-5.4-mini-fast", family: "gpt-mini", reasoning: true, temperature: false, toolCall: true, modalities: { input: ["text", "image"], output: ["text"], }, limit: { context: 400000, input: 272000, output: 128000, }, }, }