add o4-mini-high and remove all unused models

This commit is contained in:
Davidlasky
2025-04-17 20:03:31 -05:00
parent 55b6f236db
commit 5d4e393302
4 changed files with 43 additions and 142 deletions

View File

@@ -17,15 +17,14 @@ describe("isVisionModel", () => {
const visionModels = [
"gpt-4.1",
"claude-3-opus",
"gemini-1.5-pro",
"gemini-2.0",
"gemini-2.5-pro",
"gemini-exp-vision",
"learnlm-vision",
"qwen-vl-max",
"qwen2-vl-max",
"gpt-4-turbo",
"o4-mini",
"dall-e-3",
"o1",
];
visionModels.forEach((model) => {
@@ -38,12 +37,7 @@ describe("isVisionModel", () => {
});
test("should not identify non-vision models", () => {
const nonVisionModels = [
"gpt-3.5-turbo",
"gpt-4-turbo-preview",
"claude-2",
"regular-model",
];
const nonVisionModels = ["gpt-3.5-turbo", "claude-2", "regular-model"];
nonVisionModels.forEach((model) => {
expect(isVisionModel(model)).toBe(false);