Change LLM model gemini-2.0-flash -> gemini-2.5-flash-lite

This commit is contained in:
Peter Stockings
2026-02-08 14:47:38 +11:00
parent 717a18fa3c
commit 4991a66b63

View File

@@ -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."