latest version number

This commit is contained in:
dal 2025-04-14 12:42:12 -06:00
parent 0c2cc33cc5
commit c9ee8674be
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

@ -1055,7 +1055,7 @@ async fn process_completed_files(
.set((
chats::most_recent_file_id.eq(Some(file_uuid)),
chats::most_recent_file_type.eq(file_type_for_chat),
// chats::most_recent_version_number implicitly handled by file version
chats::most_recent_version_number.eq(file_content.version_number),
chats::updated_at.eq(Utc::now()),
))
.execute(conn)