From 15b8fc8e976d9634f4dab7e688f49daf215ae2b1 Mon Sep 17 00:00:00 2001 From: Aldred Benedict <45155724+aldredb@users.noreply.github.com> Date: Mon, 29 Sep 2025 11:21:33 +0800 Subject: [PATCH] Change to use gemini-2.5-pro Fix issue regarding gemini-1.5-pro not found --- utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.py b/utils/utils.py index 22f4c62..7aafa2d 100644 --- a/utils/utils.py +++ b/utils/utils.py @@ -121,7 +121,7 @@ def get_llm(provider: str): ) elif provider == "google": return ChatGoogleGenerativeAI( - model="gemini-1.5-pro", + model="gemini-2.5-pro", temperature=0, ) elif provider == "microsoft":