Merge branch 'evals' into big-nate/bus-939-create-new-structure-for-chats

This commit is contained in:
Nate Kelley 2025-03-05 17:19:26 -07:00
commit e22a885e93
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
2 changed files with 2 additions and 2 deletions

View File

@ -588,7 +588,7 @@ pub async fn process_metric_file(
let metric_file = MetricFile {
id: metric_id,
name: metric_yml.title.clone(),
name: file_name.clone(),
file_name: file_name.clone(),
content: serde_json::to_value(metric_yml.clone())
.map_err(|e| format!("Failed to process metric: {}", e))?,

View File

@ -293,7 +293,7 @@ impl StreamingParser {
message_type: "files".to_string(),
title: format!("Creating {} files...", file_type),
secondary_title: String::new(),
status: "loading".to_string(),
status: "completed".to_string(),
file_ids,
files: files_map,
})));