From 50c99d1f7d4a041cc6995dea5614faa5ebbec8f6 Mon Sep 17 00:00:00 2001 From: Deep Koluguri Date: Sun, 28 Jun 2026 16:44:10 -0400 Subject: [PATCH] Use gemini-pro instead of gemini-1.5-flash --- src/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent.py b/src/agent.py index 6ce8ff0..b0ea78a 100644 --- a/src/agent.py +++ b/src/agent.py @@ -103,7 +103,7 @@ def run_agent_activity(payload: dict) -> str: target_jid = payload.get("targetJid", "default") sender = payload.get("sender", "Unknown") - llm = ChatGoogleGenerativeAI(model="gemini-1.5-flash") + llm = ChatGoogleGenerativeAI(model="gemini-pro") system_prompt = f"""You are a highly capable AI assistant operating as an orchestrator.