Atualiza o modelo da API do Gemini para a versão 2.5-pro no arquivo main.ts.

This commit is contained in:
Gabriel Cano 2025-08-24 20:35:02 -03:00
commit 76dc15d3f6

View file

@ -7,7 +7,7 @@ import minimatch from "minimatch";
const GITHUB_TOKEN: string = core.getInput("GITHUB_TOKEN");
const GEMINI_API_KEY: string = core.getInput("GEMINI_API_KEY");
const GEMINI_MODEL: string = core.getInput("GEMINI_MODEL") || "gemini-1.5-flash";
const GEMINI_MODEL: string = core.getInput("GEMINI_MODEL") || "gemini-2.5-pro";
const octokit = new Octokit({ auth: GITHUB_TOKEN });