From 44aff769a3fcff6eb4ce26e26fdb93a79b3ebcb8 Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Wed, 4 Jun 2025 09:29:14 -0700 Subject: [PATCH] Bring back 2.5-pro usage (#744) https://chat.google.com/room/AAQApBm33UQ/8DQw4Ykp8f0/8DQw4Ykp8f0?cls=10 --- packages/cli/src/config/config.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/packages/cli/src/config/config.ts b/packages/cli/src/config/config.ts index 67175473..952ecbcf 100644 --- a/packages/cli/src/config/config.ts +++ b/packages/cli/src/config/config.ts @@ -34,11 +34,8 @@ const logger = { error: (...args: any[]) => console.error('[ERROR]', ...args), }; -export const DEFAULT_GEMINI_MODEL = 'gemini-2.5-flash-preview-04-17'; -export const DEFAULT_GEMINI_FLASH_MODEL = 'gemini-2.5-flash-preview-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'; +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;