From fc7bd0c708e560b065e262ae74adca8412866c2f Mon Sep 17 00:00:00 2001 From: prem-2006 Date: Sun, 12 Oct 2025 18:47:42 +0530 Subject: [PATCH] fix: update Gemini model version in presubmit.yml (#3337) The Presubmit.ai check was failing due to an outdated Gemini model version. Updated LLM_MODEL from "gemini-1.5-flash" to "gemini-1.5-flash-latest" to fix the issue. --- .github/workflows/presubmit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/presubmit.yml b/.github/workflows/presubmit.yml index cac1250b70e8..fb43da1e66fb 100644 --- a/.github/workflows/presubmit.yml +++ b/.github/workflows/presubmit.yml @@ -32,4 +32,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} LLM_API_KEY: ${{ secrets.LLM_API_KEY }} - LLM_MODEL: "gemini-1.5-flash" + LLM_MODEL: "gemini-1.5-flash-latest" # ✅ updated model version