Workaround Gemini API break - Use flash 04-17 (#721)

This commit is contained in:
N. Taylor Mullen 2025-06-03 10:47:20 -07:00 committed by GitHub
parent e190249732
commit c5099e9025
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 2 deletions

View File

@ -34,8 +34,11 @@ const logger = {
error: (...args: any[]) => console.error('[ERROR]', ...args),
};
export const DEFAULT_GEMINI_MODEL = 'gemini-2.5-pro-preview-05-06';
export const DEFAULT_GEMINI_FLASH_MODEL = 'gemini-2.5-flash-preview-05-20';
export const DEFAULT_GEMINI_MODEL = 'gemini-2.5-flash-04-17';
export const DEFAULT_GEMINI_FLASH_MODEL = 'gemini-2.5-flash-04-17';
// export const DEFAULT_GEMINI_MODEL = 'gemini-2.5-pro-preview-05-06';
// export const DEFAULT_GEMINI_FLASH_MODEL = 'gemini-2.5-flash-preview-05-20';
interface CliArgs {
model: string | undefined;