Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/models/modelTables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,10 @@ export const VISION_CAPABLE_MODELS = new Set([
"gpt-5-nano",
"grok-build-0.1",
"gpt-5.6-luna",
// Muse Spark 1.2 — models.dev lists image/video/pdf/audio input modalities
// for both variants; without these entries an offline fallback snapshot
// reports imageInput: false and VS Code strips attachments before they
// reach the provider (#183).
"muse-spark-1.2-contributor",
"muse-spark-1.2-contributor-free",
]);
5 changes: 5 additions & 0 deletions src/test/metadata.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ describe("VISION_CAPABLE_MODELS", () => {
assert.ok(!VISION_CAPABLE_MODELS.has("big-pickle"));
});

it("includes both Muse Spark 1.2 variants (models.dev lists image input) (#183)", () => {
assert.ok(VISION_CAPABLE_MODELS.has("muse-spark-1.2-contributor"));
assert.ok(VISION_CAPABLE_MODELS.has("muse-spark-1.2-contributor-free"));
});

it("is an exported Set", () => {
assert.ok(VISION_CAPABLE_MODELS instanceof Set);
assert.ok(VISION_CAPABLE_MODELS.size > 10);
Expand Down
Loading