- Declare deepseek-v4.1-flash and deepseek-flash as vision-capable in MODEL_CAPABILITIES - Share installed catalogSource across route chunks via globalThis.__9rCatalogSource - Scope catalog modality keys by provider:model to prevent cross-gateway collisions - Upgrade catalog format to v2 with automatic rebuild of older schemas
117 lines
5.1 KiB
JavaScript
117 lines
5.1 KiB
JavaScript
import { describe, expect, it } from "vitest";
|
|
import { getCapabilitiesForModel } from "../../open-sse/providers/capabilities.js";
|
|
|
|
describe("getCapabilitiesForModel", () => {
|
|
|
|
it("reports DeepSeek V4.1-Flash ids as vision-capable without dropping their thinking/context", () => {
|
|
const v41 = { vision: true, reasoning: true, thinkingFormat: "deepseek", contextWindow: 1000000, maxOutput: 384000 };
|
|
expect(getCapabilitiesForModel(undefined, "deepseek-v4.1-flash")).toMatchObject(v41);
|
|
expect(getCapabilitiesForModel("opencode-go", "deepseek-v4.1-flash")).toMatchObject(v41);
|
|
expect(getCapabilitiesForModel("openrouter", "deepseek/deepseek-v4.1-flash")).toMatchObject(v41);
|
|
// "deepseek-flash" is the GA id for V4.1-Flash on the DeepSeek API; the pattern it
|
|
// used to fall through to gives it 128K/64K, which the exact entry keeps.
|
|
expect(getCapabilitiesForModel("opencode-go", "deepseek-flash")).toMatchObject({
|
|
vision: true,
|
|
reasoning: true,
|
|
thinkingFormat: "deepseek",
|
|
contextWindow: 128000,
|
|
maxOutput: 64000,
|
|
});
|
|
// the superseded text-only Flash id stays text-only
|
|
expect(getCapabilitiesForModel("opencode-go", "deepseek-v4-flash").vision).toBe(false);
|
|
});
|
|
const claudeSonnet5Expected = {
|
|
contextWindow: 1000000,
|
|
maxOutput: 128000,
|
|
thinkingFormat: "claude-adaptive",
|
|
reasoning: true,
|
|
vision: true,
|
|
search: true,
|
|
};
|
|
|
|
const kiroGpt56Expected = {
|
|
contextWindow: 272000,
|
|
maxOutput: 128000,
|
|
thinkingFormat: "openai",
|
|
reasoning: true,
|
|
vision: true,
|
|
search: true,
|
|
};
|
|
|
|
it("reports Kiro Claude Opus 5 variants as 1M adaptive-thinking models", () => {
|
|
for (const model of [
|
|
"claude-opus-5",
|
|
"anthropic/claude-opus-5",
|
|
"claude-opus-5-thinking",
|
|
"claude-opus-5-agentic",
|
|
"claude-opus-5-thinking-agentic",
|
|
]) {
|
|
expect(getCapabilitiesForModel("kiro", model)).toMatchObject(claudeSonnet5Expected);
|
|
}
|
|
});
|
|
|
|
it("reports Claude Fable 5.1 as a permanent adaptive-thinking model", () => {
|
|
expect(getCapabilitiesForModel("claude", "claude-fable-5-1")).toMatchObject({
|
|
...claudeSonnet5Expected,
|
|
thinkingCanDisable: false,
|
|
});
|
|
});
|
|
|
|
it("reports Kiro Claude Opus 4.8 as a 1M context model", () => {
|
|
expect(getCapabilitiesForModel("kiro", "claude-opus-4.8").contextWindow).toBe(1000000);
|
|
expect(getCapabilitiesForModel("kiro", "anthropic/claude-opus-4.8").contextWindow).toBe(1000000);
|
|
expect(getCapabilitiesForModel("kiro", "claude-opus-4-8").contextWindow).toBe(1000000);
|
|
expect(getCapabilitiesForModel("kiro", "claude-opus-4.8-thinking").contextWindow).toBe(1000000);
|
|
expect(getCapabilitiesForModel("kiro", "claude-opus-4-8-thinking").contextWindow).toBe(1000000);
|
|
});
|
|
|
|
it("reports Kiro Claude Sonnet 5 as a 1M adaptive-thinking model", () => {
|
|
expect(getCapabilitiesForModel("kiro", "claude-sonnet-5")).toMatchObject(claudeSonnet5Expected);
|
|
expect(getCapabilitiesForModel("kiro", "anthropic/claude-sonnet-5")).toMatchObject(claudeSonnet5Expected);
|
|
expect(getCapabilitiesForModel("kiro", "claude-sonnet-5-thinking")).toMatchObject(claudeSonnet5Expected);
|
|
expect(getCapabilitiesForModel("kiro", "claude-sonnet-5-agentic")).toMatchObject(claudeSonnet5Expected);
|
|
expect(getCapabilitiesForModel("kiro", "claude-sonnet-5-thinking-agentic")).toMatchObject(claudeSonnet5Expected);
|
|
});
|
|
|
|
it("reports Kiro GPT 5.6 models with the Kiro 272k context window", () => {
|
|
expect(getCapabilitiesForModel("kiro", "gpt-5.6-sol")).toMatchObject(kiroGpt56Expected);
|
|
expect(getCapabilitiesForModel("kiro", "openai/gpt-5.6-sol")).toMatchObject(kiroGpt56Expected);
|
|
expect(getCapabilitiesForModel("kiro", "gpt-5.6-terra-thinking")).toMatchObject(kiroGpt56Expected);
|
|
expect(getCapabilitiesForModel("kiro", "gpt-5.6-luna-agentic")).toMatchObject(kiroGpt56Expected);
|
|
expect(getCapabilitiesForModel("kiro", "gpt-5.6-sol-thinking-agentic")).toMatchObject(kiroGpt56Expected);
|
|
});
|
|
|
|
it("reports Codex GPT 6.0 Astra as a vision and thinking capable model", () => {
|
|
expect(getCapabilitiesForModel("codex", "gpt-6-astra")).toMatchObject({
|
|
vision: true,
|
|
reasoning: true,
|
|
search: true,
|
|
thinkingFormat: "openai",
|
|
contextWindow: 272000,
|
|
maxOutput: 128000,
|
|
});
|
|
});
|
|
|
|
it("CommandCode v4.1-flash is vision + effort capable", () => {
|
|
expect(getCapabilitiesForModel("commandcode", "deepseek/deepseek-v4.1-flash")).toMatchObject({
|
|
vision: true,
|
|
reasoning: true,
|
|
thinkingFormat: "commandcode",
|
|
thinkingEffortSupported: true,
|
|
});
|
|
});
|
|
|
|
it("CommandCode MiniMax-M3 is vision capable", () => {
|
|
expect(getCapabilitiesForModel("commandcode", "MiniMaxAI/MiniMax-M3").vision).toBe(true);
|
|
});
|
|
|
|
it("CommandCode text-only DeepSeek V4 Flash stays non-vision", () => {
|
|
expect(getCapabilitiesForModel("commandcode", "deepseek/deepseek-v4-flash").vision).toBe(false);
|
|
expect(getCapabilitiesForModel("commandcode", "deepseek/deepseek-v4-flash")).toMatchObject({
|
|
reasoning: true,
|
|
thinkingFormat: "commandcode",
|
|
thinkingEffortSupported: true,
|
|
});
|
|
});
|
|
});
|