2026-04-21 13:29:49 +09:00
|
|
|
import { SUPPLEMENTAL_MODEL_CAPABILITIES } from "./supplemental-entries"
|
2026-04-03 19:38:26 +09:00
|
|
|
import type { ModelCapabilitiesSnapshot } from "./types"
|
|
|
|
|
|
2026-05-21 11:36:26 +09:00
|
|
|
export function getBundledModelCapabilitiesSnapshot(
|
|
|
|
|
snapshotJson: ModelCapabilitiesSnapshot,
|
2026-04-03 19:38:26 +09:00
|
|
|
): ModelCapabilitiesSnapshot {
|
2026-05-21 11:36:26 +09:00
|
|
|
return {
|
|
|
|
|
...snapshotJson,
|
|
|
|
|
models: {
|
|
|
|
|
...snapshotJson.models,
|
|
|
|
|
...SUPPLEMENTAL_MODEL_CAPABILITIES,
|
|
|
|
|
},
|
|
|
|
|
}
|
2026-04-03 19:38:26 +09:00
|
|
|
}
|