flash preview for review and data catalog search

This commit is contained in:
dal 2025-05-07 18:59:59 -06:00
parent 6bdd3d74d2
commit 024daa9960
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ pub fn get_configuration(agent_data: &ModeAgentData, _data_source_syntax: Option
// Note: This prompt doesn't use {TODAYS_DATE}
// 2. Define the model for this mode
let model = "gemini-2.5-pro-exp-03-25".to_string(); // Use gemini-2.5-pro-exp-03-25 as requested
let model = "gemini-2.5-flash-preview-04-17".to_string(); // Use gemini-2.5-pro-exp-03-25 as requested
// 3. Define the tool loader closure
let tool_loader: Box<dyn Fn(&Arc<Agent>) -> Pin<Box<dyn Future<Output = Result<()>> + Send>> + Send + Sync> =

View File

@ -24,7 +24,7 @@ pub fn get_configuration(_agent_data: &ModeAgentData, _data_source_syntax: Optio
let prompt = REVIEW_PROMPT.to_string(); // Use the correct constant
// 2. Define the model for this mode (From original MODEL const)
let model = "gemini-2.5-pro-exp-03-25".to_string();
let model = "gemini-2.5-flash-preview-04-17".to_string();
// 3. Define the tool loader closure
let tool_loader: Box<