Files
oh-my-opencode/packages/model-core/src/model-capabilities/supplemental-entries.ts
T
2026-05-21 12:49:50 +09:00

52 lines
954 B
TypeScript

import type { ModelCapabilitiesSnapshotEntry } from "./types"
export const SUPPLEMENTAL_MODEL_CAPABILITIES: Record<string, ModelCapabilitiesSnapshotEntry> = {
"kimi-k2.6": {
id: "kimi-k2.6",
family: "kimi",
reasoning: true,
temperature: true,
toolCall: true,
modalities: {
input: ["text", "image", "video"],
output: ["text"],
},
limit: {
context: 262144,
output: 262144,
},
},
"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,
},
},
}