mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
fix(capabilities): mark Claude Opus 4.7 (dashed id) as 1M context
Registry exposes the dashed id claude-opus-4-7; matchPattern treats "." as a literal, so it missed the dotted pattern and fell through to the generic claude opus entry (200k / claude-budget). Add an exact entry so it resolves to 1M context + adaptive thinking, plus a unit test covering the dashed Opus ids. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
committed by
decolua
co-authored by
Cursor
parent
6e9c7bf448
commit
49a3ec7a72
@@ -74,6 +74,7 @@ export const MODEL_CAPABILITIES = {
|
|||||||
// Claude 4.6/4.7/4.8 have 1M context + adaptive thinking (override generic claude pattern)
|
// Claude 4.6/4.7/4.8 have 1M context + adaptive thinking (override generic claude pattern)
|
||||||
"claude-opus-4.6": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
|
"claude-opus-4.6": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
|
||||||
"claude-opus-4.7": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
|
"claude-opus-4.7": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
|
||||||
|
"claude-opus-4-7": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
|
||||||
"claude-opus-4.8": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
|
"claude-opus-4.8": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
|
||||||
"claude-opus-4-6": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
|
"claude-opus-4-6": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
|
||||||
"claude-opus-4-8": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
|
"claude-opus-4-8": { vision: true, reasoning: true, search: true, thinkingFormat: "claude-adaptive", contextWindow: 1000000, maxOutput: 128000 },
|
||||||
|
|||||||
@@ -0,0 +1,34 @@
|
|||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
|
||||||
|
import { getCapabilitiesForModel } from "../../open-sse/providers/capabilities.js";
|
||||||
|
|
||||||
|
// Claude Opus 4.6+ ships a 1M-token context window (GA, standard pricing).
|
||||||
|
// The registry exposes dashed ids (claude-opus-4-8, claude-opus-4-7), which
|
||||||
|
// must resolve to the 1M context + adaptive thinking caps rather than falling
|
||||||
|
// through to the generic *claude*opus* pattern (200k / budget thinking).
|
||||||
|
describe("Claude Opus 1M context capabilities", () => {
|
||||||
|
const expected = {
|
||||||
|
contextWindow: 1000000,
|
||||||
|
maxOutput: 128000,
|
||||||
|
thinkingFormat: "claude-adaptive",
|
||||||
|
reasoning: true,
|
||||||
|
vision: true,
|
||||||
|
search: true,
|
||||||
|
};
|
||||||
|
|
||||||
|
for (const model of [
|
||||||
|
"claude-opus-4-8",
|
||||||
|
"claude-opus-4.8",
|
||||||
|
"claude-opus-4-7",
|
||||||
|
"claude-opus-4.7",
|
||||||
|
"claude-opus-4-6",
|
||||||
|
]) {
|
||||||
|
it(`resolves ${model} to a 1M context window`, () => {
|
||||||
|
expect(getCapabilitiesForModel("cc", model)).toMatchObject(expected);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
it("keeps the older Opus 4.5 at the standard 200k context", () => {
|
||||||
|
expect(getCapabilitiesForModel("cc", "claude-opus-4-5-20251101").contextWindow).toBe(200000);
|
||||||
|
});
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user