mirror of https://github.com/buster-so/buster.git
Merge branch 'evals' of https://github.com/buster-so/buster into evals
This commit is contained in:
commit
556e11bcd8
|
@ -605,7 +605,7 @@ 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(),
|
||||||
}),
|
}),
|
||||||
reasoning_effort: Some("low".to_string()),
|
// reasoning_effort: Some("low".to_string()),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1055,7 +1055,7 @@ async fn process_completed_files(
|
||||||
.set((
|
.set((
|
||||||
chats::most_recent_file_id.eq(Some(file_uuid)),
|
chats::most_recent_file_id.eq(Some(file_uuid)),
|
||||||
chats::most_recent_file_type.eq(file_type_for_chat),
|
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()),
|
chats::updated_at.eq(Utc::now()),
|
||||||
))
|
))
|
||||||
.execute(conn)
|
.execute(conn)
|
||||||
|
|
Loading…
Reference in New Issue