From 514d03a4619fe25f54f52690036b4799219b3fbe Mon Sep 17 00:00:00 2001 From: Dorbmon Date: Thu, 26 Dec 2024 15:28:08 +0800 Subject: [PATCH] feat: o1 as vision model --- app/constant.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/constant.ts b/app/constant.ts index cba3dfadb..56bc47085 100644 --- a/app/constant.ts +++ b/app/constant.ts @@ -303,6 +303,7 @@ export const VISION_MODEL_REGEXES = [ /qwen2-vl/, /gpt-4-turbo(?!.*preview)/, // Matches "gpt-4-turbo" but not "gpt-4-turbo-preview" /^dall-e-3$/, // Matches exactly "dall-e-3" + /^o1/, // Matches o1 models ]; export const EXCLUDE_VISION_MODEL_REGEXES = [/claude-3-5-haiku-20241022/];