mirror of https://github.com/buster-so/buster.git
latest version number
This commit is contained in:
parent
0c2cc33cc5
commit
c9ee8674be
|
@ -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()
|
||||
};
|
||||
|
||||
|
|
|
@ -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(),
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue