o3-mini for a bit more testing before o1

This commit is contained in:
dal 2025-04-14 13:24:09 -06:00
parent a6e5ade68d
commit a6f7950b6d
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
2 changed files with 3 additions and 3 deletions

View File

@ -605,8 +605,8 @@ impl Agent {
session_id: thread.id.to_string(), session_id: thread.id.to_string(),
trace_id: Uuid::new_v4().to_string(), trace_id: Uuid::new_v4().to_string(),
}), }),
temperature: Some(0.0), // temperature: Some(0.0),
max_completion_tokens: Some(15000), // max_completion_tokens: Some(15000),
// reasoning_effort: Some("low".to_string()), // reasoning_effort: Some("low".to_string()),
..Default::default() ..Default::default()
}; };

View File

@ -206,7 +206,7 @@ impl BusterMultiAgent {
// Create agent, passing the selected initialization prompt as default // Create agent, passing the selected initialization prompt as default
let agent = Arc::new(Agent::new( let agent = Arc::new(Agent::new(
"gpt-4.1".to_string(), "o3-mini".to_string(),
user_id, user_id,
session_id, session_id,
"buster_multi_agent".to_string(), "buster_multi_agent".to_string(),