From 27ed57a6481e4209ee0e536805f86553763a6c56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=91=E4=BA=91=E7=99=BD=E5=9C=9F?= Date: Thu, 28 Mar 2024 15:49:49 +0800 Subject: [PATCH] Update utils.ts --- app/utils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/utils.ts b/app/utils.ts index b4fc1980c..6fce5bcce 100644 --- a/app/utils.ts +++ b/app/utils.ts @@ -296,6 +296,7 @@ export function isVisionModel(model: string) { const visionKeywords = [ "vision", "claude-3", + "gemini-1.5-pro", ]; return visionKeywords.some(keyword => model.includes(keyword));