From 26f79aa6e66f6363029800364217014d7aac4b7f Mon Sep 17 00:00:00 2001 From: glay Date: Sun, 22 Dec 2024 23:38:45 +0800 Subject: [PATCH] feat:add nova VISION_MODEL_REGEXES --- app/constant.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/constant.ts b/app/constant.ts index bea2af691..1481543f6 100644 --- a/app/constant.ts +++ b/app/constant.ts @@ -315,6 +315,8 @@ 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" + /nova-lite/, + /nova-pro/, ]; export const EXCLUDE_VISION_MODEL_REGEXES = [/claude-3-5-haiku-20241022/];