From 4991a66b63a955b920aed656743acf1f4ab28039 Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Sun, 8 Feb 2026 14:47:38 +1100 Subject: [PATCH] Change LLM model gemini-2.0-flash -> gemini-2.5-flash-lite --- routes/llm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/llm.py b/routes/llm.py index df642e1..658460e 100644 --- a/routes/llm.py +++ b/routes/llm.py @@ -8,7 +8,7 @@ llm = Blueprint('llm', __name__) def _call_llm(action, natural_query, code, runtime, logs): api_key = os.environ.get("GEMINI_API_KEY") - model = os.environ.get("GEMINI_MODEL", "gemini-2.0-flash") + model = os.environ.get("GEMINI_MODEL", "gemini-2.5-flash-lite") if not api_key: return None, "GEMINI_API_KEY not set."