pub const DEFAULT_MODEL: &str = "gemini-3-flash-preview";
pub const SUPPORTED_MODELS: &[&str] = &[
"gemini-3.1-pro-preview", "gemini-3.1-pro-preview-customtools", "gemini-3.1-flash-lite-preview", "gemini-3-flash-preview", "gemini-3-pro-image-preview", ];
pub const REASONING_MODELS: &[&str] = &[
"gemini-3.1-pro-preview",
"gemini-3.1-pro-preview-customtools",
"gemini-3.1-flash-lite-preview",
"gemini-3-flash-preview",
];
pub const EXTENDED_THINKING_MODELS: &[&str] =
&["gemini-3-flash-preview", "gemini-3.1-flash-lite-preview"];
pub const IMAGE_GENERATION_MODELS: &[&str] = &["gemini-3-pro-image-preview"];
pub const CACHING_MODELS: &[&str] = &[
"gemini-3.1-pro-preview",
"gemini-3.1-pro-preview-customtools",
"gemini-3.1-flash-lite-preview",
"gemini-3-flash-preview",
];
pub const CODE_EXECUTION_MODELS: &[&str] = &[
"gemini-3.1-pro-preview",
"gemini-3.1-pro-preview-customtools",
"gemini-3.1-flash-lite-preview",
"gemini-3-flash-preview",
];
pub const GEMINI_3_1_PRO_PREVIEW: &str = "gemini-3.1-pro-preview";
pub const GEMINI_3_1_PRO_PREVIEW_CUSTOMTOOLS: &str = "gemini-3.1-pro-preview-customtools";
pub const GEMINI_3_1_FLASH_LITE_PREVIEW: &str = "gemini-3.1-flash-lite-preview";
pub const GEMINI_3_FLASH_PREVIEW: &str = "gemini-3-flash-preview";
pub const GEMINI_3_PRO_IMAGE_PREVIEW: &str = "gemini-3-pro-image-preview";