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