From 5b13e25adc3b88993abd4c38acab4fa6aa2e6aec Mon Sep 17 00:00:00 2001 From: Youssef Aitousarrah Date: Sun, 12 Apr 2026 17:40:01 -0700 Subject: [PATCH] feat(hypotheses): use gemini-3-flash-preview for LLM analysis Co-Authored-By: Claude Sonnet 4.6 --- scripts/run_hypothesis_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_hypothesis_runner.py b/scripts/run_hypothesis_runner.py index 78799254..c360407c 100644 --- a/scripts/run_hypothesis_runner.py +++ b/scripts/run_hypothesis_runner.py @@ -232,7 +232,7 @@ Be direct. Do not restate the numbers — interpret them. Do not recommend mergi try: client = genai.Client(api_key=api_key) response = client.models.generate_content( - model="gemini-2.5-flash-lite", + model="gemini-3-flash-preview", contents=prompt, ) return response.text.strip()