1mod assertions;
2mod example;
3mod examples;
4mod explorer;
5mod ids;
6mod instance;
7mod tool_metrics;
8
9use assertions::{AssertionsReport, display_error_row};
10use instance::{ExampleInstance, JudgeOutput, RunOutput, run_git};
11use language_extension::LspAccess;
12pub(crate) use tool_metrics::*;
13
14use ::fs::RealFs;
15use clap::Parser;
16use client::{Client, ProxySettings, UserStore};
17use collections::{HashMap, HashSet};
18use extension::ExtensionHostProxy;
19use futures::future;
20use gpui::http_client::read_proxy_from_env;
21use gpui::{App, AppContext, Application, AsyncApp, Entity, UpdateGlobal};
22use gpui_tokio::Tokio;
23use language::LanguageRegistry;
24use language_model::{ConfiguredModel, LanguageModel, LanguageModelRegistry, SelectedModel};
25use node_runtime::{NodeBinaryOptions, NodeRuntime};
26use project::Project;
27use project::project_settings::ProjectSettings;
28use prompt_store::PromptBuilder;
29use release_channel::AppVersion;
30use reqwest_client::ReqwestClient;
31use settings::{Settings, SettingsStore};
32use std::cell::RefCell;
33use std::collections::VecDeque;
34use std::env;
35use std::path::{Path, PathBuf};
36use std::rc::Rc;
37use std::str::FromStr;
38use std::sync::{Arc, LazyLock};
39use util::ResultExt as _;
40
41static CARGO_MANIFEST_DIR: LazyLock<PathBuf> =
42 LazyLock::new(|| PathBuf::from(env!("CARGO_MANIFEST_DIR")));
43
44#[derive(Parser, Debug)]
45#[command(name = "eval", disable_version_flag = true)]
46struct Args {
47 /// Runs all examples and threads that contain these substrings. If unspecified, all examples and threads are run.
48 #[arg(value_name = "EXAMPLE_SUBSTRING")]
49 filter: Vec<String>,
50 /// provider/model to use for agent
51 #[arg(long, default_value = "anthropic/claude-3-7-sonnet-latest")]
52 model: String,
53 /// provider/model to use for judges
54 #[arg(long, default_value = "anthropic/claude-3-7-sonnet-latest")]
55 judge_model: String,
56 #[arg(long, value_delimiter = ',', default_value = "rs,ts,py")]
57 languages: Vec<String>,
58 /// How many times to run each example.
59 #[arg(long, default_value = "8")]
60 repetitions: usize,
61 /// Maximum number of examples to run concurrently.
62 #[arg(long, default_value = "4")]
63 concurrency: usize,
64}
65
66fn main() {
67 dotenvy::from_filename(CARGO_MANIFEST_DIR.join(".env")).ok();
68
69 env_logger::init();
70
71 let system_id = ids::get_or_create_id(&ids::eval_system_id_path()).ok();
72 let installation_id = ids::get_or_create_id(&ids::eval_installation_id_path()).ok();
73 let session_id = uuid::Uuid::new_v4().to_string();
74 let run_timestamp = chrono::Local::now().format("%Y-%m-%d_%H-%M-%S");
75 let run_id = match env::var("GITHUB_RUN_ID") {
76 Ok(run_id) => format!("github/{}", run_id),
77 Err(_) => format!("local/{}", run_timestamp),
78 };
79
80 let root_dir = Path::new(std::env!("CARGO_MANIFEST_DIR"))
81 .parent()
82 .unwrap()
83 .parent()
84 .unwrap()
85 .canonicalize()
86 .unwrap();
87 let eval_crate_dir = root_dir.join("crates").join("eval");
88 let repos_dir = eval_crate_dir.join("repos");
89 let worktrees_dir = eval_crate_dir.join("worktrees");
90 let examples_dir = eval_crate_dir.join("src").join("examples");
91 let run_dir = eval_crate_dir
92 .join("runs")
93 .join(format!("{}", run_timestamp));
94 std::fs::create_dir_all(&run_dir).unwrap();
95 std::fs::create_dir_all(&repos_dir).unwrap();
96 std::fs::create_dir_all(&worktrees_dir).unwrap();
97 std::fs::create_dir_all(&examples_dir).unwrap();
98 std::fs::create_dir_all(&paths::config_dir()).unwrap();
99
100 let zed_commit_sha = commit_sha_for_path(&root_dir);
101 let zed_branch_name = git_branch_for_path(&root_dir);
102 let args = Args::parse();
103 let languages: HashSet<String> = args.languages.into_iter().collect();
104
105 let http_client = Arc::new(ReqwestClient::new());
106 let app = Application::headless().with_http_client(http_client.clone());
107 let all_threads = examples::all(&examples_dir);
108
109 app.run(move |cx| {
110 let app_state = init(cx);
111
112 let telemetry = app_state.client.telemetry();
113 telemetry.start(system_id, installation_id, session_id, cx);
114
115 let enable_telemetry = env::var("ZED_EVAL_TELEMETRY").is_ok_and(|value| value == "1")
116 && telemetry.has_checksum_seed();
117 if enable_telemetry {
118 println!("Telemetry enabled");
119 telemetry::event!(
120 "Agent Eval Started",
121 zed_commit_sha = zed_commit_sha,
122 zed_branch_name = zed_branch_name,
123 run_id = run_id,
124 );
125 }
126
127 let mut cumulative_tool_metrics = ToolMetrics::default();
128
129 let agent_model = load_model(&args.model, cx).unwrap();
130 let judge_model = load_model(&args.judge_model, cx).unwrap();
131
132 LanguageModelRegistry::global(cx).update(cx, |registry, cx| {
133 registry.set_default_model(Some(agent_model.clone()), cx);
134 });
135
136 let auth1 = agent_model.provider.authenticate(cx);
137 let auth2 = judge_model.provider.authenticate(cx);
138
139 cx.spawn(async move |cx| {
140 auth1.await?;
141 auth2.await?;
142
143 let mut examples = Vec::new();
144
145 const COLORS: [&str; 12] = [
146 "\x1b[31m", // Red
147 "\x1b[32m", // Green
148 "\x1b[33m", // Yellow
149 "\x1b[34m", // Blue
150 "\x1b[35m", // Magenta
151 "\x1b[36m", // Cyan
152 "\x1b[91m", // Bright Red
153 "\x1b[92m", // Bright Green
154 "\x1b[93m", // Bright Yellow
155 "\x1b[94m", // Bright Blue
156 "\x1b[95m", // Bright Magenta
157 "\x1b[96m", // Bright Cyan
158 ];
159
160 let mut skipped = Vec::new();
161
162 for thread in all_threads {
163 let meta = thread.meta();
164 if !args.filter.is_empty() && !args.filter.iter().any(|sub| meta.name.contains(sub))
165 {
166 skipped.push(meta.name);
167 continue;
168 }
169
170 if let Some(language) = meta.language_server
171 && !languages.contains(&language.file_extension) {
172 panic!(
173 "Eval for {:?} could not be run because no language server was found for extension {:?}",
174 meta.name,
175 language.file_extension
176 );
177 }
178
179 // TODO: This creates a worktree per repetition. Ideally these examples should
180 // either be run sequentially on the same worktree, or reuse worktrees when there
181 // are more examples to run than the concurrency limit.
182 for repetition_number in 0..args.repetitions {
183 let example_instance = ExampleInstance::new(
184 thread.clone(),
185 &repos_dir,
186 &run_dir,
187 &worktrees_dir,
188 repetition_number,
189 );
190
191 examples.push(example_instance);
192 }
193 }
194
195 if !skipped.is_empty() {
196 println!("Skipped threads: {}", skipped.join(", "));
197 }
198
199 if examples.is_empty() {
200 eprintln!("Filter matched no examples");
201 return cx.update(|cx| cx.quit());
202 }
203
204 let mut repo_urls = HashSet::default();
205 let mut clone_tasks = Vec::new();
206
207 let max_name_width = examples
208 .iter()
209 .map(|e| e.worktree_name().len())
210 .max()
211 .unwrap_or(0);
212
213 for (i, example_instance) in examples.iter_mut().enumerate() {
214 let color = COLORS[i % COLORS.len()].to_string();
215 example_instance.set_log_prefix_style(&color, max_name_width);
216
217 println!(
218 "{}Logging to: {}",
219 example_instance.log_prefix,
220 example_instance.run_directory.display()
221 );
222
223 let repo_url = example_instance.repo_url();
224 if repo_urls.insert(repo_url.clone()) {
225 let repo_path = example_instance.repo_path.clone();
226
227 if !repo_path.join(".git").is_dir() {
228 println!(
229 "{:<width$} < {}",
230 "↓ Cloning",
231 repo_url,
232 width = max_name_width
233 );
234
235 let git_task = cx.spawn(async move |_cx| {
236 std::fs::create_dir_all(&repo_path)?;
237 run_git(&repo_path, &["init"]).await?;
238 run_git(&repo_path, &["remote", "add", "origin", &repo_url]).await
239 });
240
241 clone_tasks.push(git_task);
242 } else {
243 println!(
244 "{:<width$} < {}",
245 "✔︎ Already cloned",
246 repo_url,
247 width = max_name_width
248 );
249
250 let actual_origin =
251 run_git(&repo_path, &["remote", "get-url", "origin"]).await?;
252 anyhow::ensure!(
253 actual_origin == repo_url,
254 "remote origin {actual_origin} does not match expected origin {repo_url}"
255 );
256 }
257 }
258 }
259
260 future::join_all(clone_tasks).await;
261
262 for example_instance in examples.iter_mut() {
263 example_instance.fetch().await?;
264 }
265
266 let examples = Rc::new(RefCell::new(VecDeque::from(examples)));
267 let results_by_example_name = Rc::new(RefCell::new(HashMap::default()));
268
269 future::join_all((0..args.concurrency).map(|_| {
270 let app_state = app_state.clone();
271 let model = agent_model.model.clone();
272 let judge_model = judge_model.model.clone();
273 let zed_commit_sha = zed_commit_sha.clone();
274 let zed_branch_name = zed_branch_name.clone();
275 let run_id = run_id.clone();
276 let examples = examples.clone();
277 let results = results_by_example_name.clone();
278 cx.spawn(async move |cx| {
279 loop {
280 let Some(mut example) = examples.borrow_mut().pop_front() else {
281 break;
282 };
283 let result = async {
284 example.setup().await?;
285 let run_output = cx
286 .update(|cx| example.run(model.clone(), app_state.clone(), cx))?
287 .await?;
288 let judge_output = judge_example(
289 example.clone(),
290 judge_model.clone(),
291 &zed_commit_sha,
292 &zed_branch_name,
293 &run_id,
294 &run_output,
295 enable_telemetry,
296 cx,
297 )
298 .await;
299 anyhow::Ok((run_output, judge_output))
300 }
301 .await;
302 results
303 .borrow_mut()
304 .entry(example.name.clone())
305 .or_insert(Vec::new())
306 .push((example.clone(), result));
307 }
308 })
309 }))
310 .await;
311
312 print_report(
313 &mut results_by_example_name.borrow_mut(),
314 &mut cumulative_tool_metrics,
315 &run_dir,
316 )?;
317
318 app_state.client.telemetry().flush_events().await;
319
320 cx.update(|cx| cx.quit())
321 })
322 .detach_and_log_err(cx);
323 });
324}
325
326/// Subset of `workspace::AppState` needed by `HeadlessAssistant`, with additional fields.
327pub struct AgentAppState {
328 pub languages: Arc<LanguageRegistry>,
329 pub client: Arc<Client>,
330 pub user_store: Entity<UserStore>,
331 pub fs: Arc<dyn fs::Fs>,
332 pub node_runtime: NodeRuntime,
333
334 // Additional fields not present in `workspace::AppState`.
335 pub prompt_builder: Arc<PromptBuilder>,
336}
337
338pub fn init(cx: &mut App) -> Arc<AgentAppState> {
339 let app_version = AppVersion::load(env!("ZED_PKG_VERSION"));
340 release_channel::init(app_version, cx);
341 gpui_tokio::init(cx);
342
343 let mut settings_store = SettingsStore::new(cx);
344 settings_store
345 .set_default_settings(settings::default_settings().as_ref(), cx)
346 .unwrap();
347 cx.set_global(settings_store);
348 client::init_settings(cx);
349
350 // Set User-Agent so we can download language servers from GitHub
351 let user_agent = format!(
352 "Zed Agent Eval/{} ({}; {})",
353 app_version,
354 std::env::consts::OS,
355 std::env::consts::ARCH
356 );
357 let proxy_str = ProxySettings::get_global(cx).proxy.to_owned();
358 let proxy_url = proxy_str
359 .as_ref()
360 .and_then(|input| input.parse().ok())
361 .or_else(read_proxy_from_env);
362 let http = {
363 let _guard = Tokio::handle(cx).enter();
364
365 ReqwestClient::proxy_and_user_agent(proxy_url, &user_agent)
366 .expect("could not start HTTP client")
367 };
368 cx.set_http_client(Arc::new(http));
369
370 Project::init_settings(cx);
371
372 let client = Client::production(cx);
373 cx.set_http_client(client.http_client());
374
375 let git_binary_path = None;
376 let fs = Arc::new(RealFs::new(
377 git_binary_path,
378 cx.background_executor().clone(),
379 ));
380
381 let mut languages = LanguageRegistry::new(cx.background_executor().clone());
382 languages.set_language_server_download_dir(paths::languages_dir().clone());
383 let languages = Arc::new(languages);
384
385 let user_store = cx.new(|cx| UserStore::new(client.clone(), cx));
386
387 extension::init(cx);
388
389 let (mut tx, rx) = watch::channel(None);
390 cx.observe_global::<SettingsStore>(move |cx| {
391 let settings = &ProjectSettings::get_global(cx).node;
392 let options = NodeBinaryOptions {
393 allow_path_lookup: !settings.ignore_system_version,
394 allow_binary_download: true,
395 use_paths: settings.path.as_ref().map(|node_path| {
396 let node_path = PathBuf::from(shellexpand::tilde(node_path).as_ref());
397 let npm_path = settings
398 .npm_path
399 .as_ref()
400 .map(|path| PathBuf::from(shellexpand::tilde(&path).as_ref()));
401 (
402 node_path.clone(),
403 npm_path.unwrap_or_else(|| {
404 let base_path = PathBuf::new();
405 node_path.parent().unwrap_or(&base_path).join("npm")
406 }),
407 )
408 }),
409 };
410 tx.send(Some(options)).log_err();
411 })
412 .detach();
413 let node_runtime = NodeRuntime::new(client.http_client(), None, rx);
414
415 let extension_host_proxy = ExtensionHostProxy::global(cx);
416
417 language::init(cx);
418 debug_adapter_extension::init(extension_host_proxy.clone(), cx);
419 language_extension::init(
420 LspAccess::Noop,
421 extension_host_proxy.clone(),
422 languages.clone(),
423 );
424 language_model::init(client.clone(), cx);
425 language_models::init(user_store.clone(), client.clone(), cx);
426 languages::init(languages.clone(), node_runtime.clone(), cx);
427 prompt_store::init(cx);
428 terminal_view::init(cx);
429 let stdout_is_a_pty = false;
430 let prompt_builder = PromptBuilder::load(fs.clone(), stdout_is_a_pty, cx);
431 agent_ui::init(
432 fs.clone(),
433 client.clone(),
434 prompt_builder.clone(),
435 languages.clone(),
436 true,
437 cx,
438 );
439 assistant_tools::init(client.http_client(), cx);
440
441 SettingsStore::update_global(cx, |store, cx| {
442 store.set_user_settings(include_str!("../runner_settings.json"), cx)
443 })
444 .unwrap();
445
446 Arc::new(AgentAppState {
447 languages,
448 client,
449 user_store,
450 fs,
451 node_runtime,
452 prompt_builder,
453 })
454}
455
456pub fn find_model(
457 model_name: &str,
458 model_registry: &LanguageModelRegistry,
459 cx: &App,
460) -> anyhow::Result<Arc<dyn LanguageModel>> {
461 let selected = SelectedModel::from_str(model_name).map_err(|e| anyhow::anyhow!(e))?;
462 model_registry
463 .available_models(cx)
464 .find(|model| model.id() == selected.model && model.provider_id() == selected.provider)
465 .ok_or_else(|| {
466 anyhow::anyhow!(
467 "No language model with ID {}/{} was available. Available models: {}",
468 selected.model.0,
469 selected.provider.0,
470 model_registry
471 .available_models(cx)
472 .map(|model| format!("{}/{}", model.provider_id().0, model.id().0))
473 .collect::<Vec<_>>()
474 .join(", ")
475 )
476 })
477}
478
479pub fn load_model(model_name: &str, cx: &mut App) -> anyhow::Result<ConfiguredModel> {
480 let model = {
481 let model_registry = LanguageModelRegistry::read_global(cx);
482 find_model(model_name, model_registry, cx)?
483 };
484
485 let provider = {
486 let model_registry = LanguageModelRegistry::read_global(cx);
487 model_registry
488 .provider(&model.provider_id())
489 .ok_or_else(|| anyhow::anyhow!("Provider not found: {}", model.provider_id()))?
490 };
491
492 Ok(ConfiguredModel {
493 provider: provider.clone(),
494 model: model.clone(),
495 })
496}
497
498pub fn commit_sha_for_path(repo_path: &Path) -> String {
499 futures::executor::block_on(run_git(repo_path, &["rev-parse", "HEAD"])).unwrap()
500}
501
502pub fn git_branch_for_path(repo_path: &Path) -> String {
503 match std::env::var("GITHUB_REF_NAME") {
504 Ok(branch) => branch,
505 Err(_) => {
506 futures::executor::block_on(run_git(repo_path, &["rev-parse", "--abbrev-ref", "HEAD"]))
507 .unwrap_or_else(|_| "unknown".to_string())
508 }
509 }
510}
511
512async fn judge_example(
513 example: ExampleInstance,
514 model: Arc<dyn LanguageModel>,
515 zed_commit_sha: &str,
516 zed_branch_name: &str,
517 run_id: &str,
518 run_output: &RunOutput,
519 enable_telemetry: bool,
520 cx: &AsyncApp,
521) -> JudgeOutput {
522 let judge_output = example.judge(model.clone(), run_output, cx).await;
523
524 if enable_telemetry {
525 telemetry::event!(
526 "Agent Example Evaluated",
527 zed_commit_sha = zed_commit_sha,
528 zed_branch_name = zed_branch_name,
529 run_id = run_id,
530 example_name = example.name.clone(),
531 example_repetition = example.repetition,
532 diff_evaluation = judge_output.diff.clone(),
533 thread_evaluation = judge_output.thread.clone(),
534 tool_metrics = run_output.tool_metrics,
535 response_count = run_output.response_count,
536 token_usage = run_output.token_usage,
537 model = model.telemetry_id(),
538 model_provider = model.provider_id().to_string(),
539 repository_url = example.repo_url(),
540 repository_revision = example.revision(),
541 diagnostic_summary_before = run_output.diagnostic_summary_before,
542 diagnostic_summary_after = run_output.diagnostic_summary_after,
543 diagnostics_before = run_output.diagnostics_before,
544 diagnostics_after = run_output.diagnostics_after,
545 );
546 }
547
548 judge_output
549}
550
551const HEADER_WIDTH: usize = 65;
552
553fn print_h1(header: &str) {
554 println!("\n\n{:=^HEADER_WIDTH$}", "");
555 println!("{:^HEADER_WIDTH$}", header);
556 println!("{:=^HEADER_WIDTH$}\n", "");
557}
558
559fn print_h2(header: &str) {
560 println!("\n{:-^HEADER_WIDTH$}", "");
561 println!("{:^HEADER_WIDTH$}", header);
562 println!("{:-^HEADER_WIDTH$}\n", "");
563}
564
565fn print_report(
566 results_by_example_name: &mut HashMap<
567 String,
568 Vec<(ExampleInstance, anyhow::Result<(RunOutput, JudgeOutput)>)>,
569 >,
570 cumulative_tool_metrics: &mut ToolMetrics,
571 run_dir: &Path,
572) -> anyhow::Result<()> {
573 print_h1("EVAL RESULTS");
574
575 let mut diff_scores = Vec::new();
576 let mut thread_scores = Vec::new();
577 let mut programmatic_scores = Vec::new();
578 let mut error_count = 0;
579
580 for (example_name, results) in results_by_example_name.iter_mut() {
581 print_h2(example_name);
582
583 results.sort_unstable_by_key(|(example, _)| example.repetition);
584 let mut example_cumulative_tool_metrics = ToolMetrics::default();
585
586 let mut table_rows = String::new();
587
588 for (example, result) in results.iter() {
589 match result {
590 Err(err) => {
591 display_error_row(&mut table_rows, example.repetition, err.to_string())?;
592 error_count += 1;
593 programmatic_scores.push(0.0);
594 diff_scores.push(0.0);
595 thread_scores.push(0.0);
596 }
597 Ok((run_output, judge_output)) => {
598 cumulative_tool_metrics.merge(&run_output.tool_metrics);
599 example_cumulative_tool_metrics.merge(&run_output.tool_metrics);
600
601 if run_output.programmatic_assertions.total_count() > 0 {
602 for assertion in &run_output.programmatic_assertions.ran {
603 assertions::display_table_row(
604 &mut table_rows,
605 example.repetition,
606 assertion,
607 )?;
608 }
609
610 programmatic_scores
611 .push(run_output.programmatic_assertions.passed_percentage())
612 }
613
614 if !judge_output.diff.is_empty() {
615 diff_scores.push(judge_output.diff.passed_percentage());
616
617 for assertion in &judge_output.diff.ran {
618 assertions::display_table_row(
619 &mut table_rows,
620 example.repetition,
621 assertion,
622 )?;
623 }
624 }
625
626 if !judge_output.thread.is_empty() {
627 thread_scores.push(judge_output.thread.passed_percentage());
628
629 for assertion in &judge_output.thread.ran {
630 assertions::display_table_row(
631 &mut table_rows,
632 example.repetition,
633 assertion,
634 )?;
635 }
636 }
637 }
638 }
639 }
640
641 let mut all_asserts = Vec::new();
642
643 if !table_rows.is_empty() {
644 assertions::print_table_header();
645 print!("{}", table_rows);
646
647 assertions::print_table_divider();
648
649 for (example, result) in results.iter() {
650 if let Ok((run_output, judge_output)) = result {
651 let asserts = [
652 run_output.programmatic_assertions.clone(),
653 judge_output.diff.clone(),
654 judge_output.thread.clone(),
655 ];
656 all_asserts.extend_from_slice(&asserts);
657 assertions::print_table_round_summary(
658 &example.repetition.to_string(),
659 asserts.iter(),
660 )
661 } else if let Err(err) = result {
662 let assert = AssertionsReport::error(err.to_string());
663 all_asserts.push(assert.clone());
664 assertions::print_table_round_summary(
665 &example.repetition.to_string(),
666 [assert].iter(),
667 )
668 }
669 }
670
671 assertions::print_table_divider();
672
673 assertions::print_table_round_summary("avg", all_asserts.iter());
674
675 assertions::print_table_footer();
676 }
677
678 if !example_cumulative_tool_metrics.is_empty() {
679 println!("{}", &example_cumulative_tool_metrics);
680 }
681 }
682
683 if results_by_example_name.len() > 1 {
684 print_h1("AGGREGATE");
685
686 if error_count > 0 {
687 println!("\n{error_count} examples failed to run!");
688 }
689
690 let programmatic_score_count = programmatic_scores.len();
691 if programmatic_score_count > 0 {
692 let average_programmatic_score = (programmatic_scores.into_iter().sum::<f32>()
693 / (programmatic_score_count as f32))
694 .floor();
695 println!("Average programmatic score: {average_programmatic_score}%");
696 }
697
698 let diff_score_count = diff_scores.len();
699 if diff_score_count > 0 {
700 let average_diff_score =
701 (diff_scores.into_iter().sum::<f32>() / (diff_score_count as f32)).floor();
702 println!("Average diff score: {average_diff_score}%");
703 }
704
705 let thread_score_count = thread_scores.len();
706
707 if thread_score_count > 0 {
708 let average_thread_score =
709 (thread_scores.into_iter().sum::<f32>() / (thread_score_count as f32)).floor();
710 println!("Average thread score: {average_thread_score}%");
711 }
712
713 println!("");
714
715 print_h2("CUMULATIVE TOOL METRICS");
716 println!("{}", cumulative_tool_metrics);
717 }
718
719 let explorer_output_path = run_dir.join("overview.html");
720 let mut json_paths: Vec<PathBuf> = results_by_example_name
721 .values()
722 .flat_map(|results| {
723 results.iter().map(|(example, _)| {
724 let absolute_path = run_dir.join(example.run_directory.join("last.messages.json"));
725 let cwd = std::env::current_dir().expect("Can't get current dir");
726 pathdiff::diff_paths(&absolute_path, cwd).unwrap_or_else(|| absolute_path.clone())
727 })
728 })
729 .collect::<Vec<_>>();
730 json_paths.sort();
731 if let Err(err) = explorer::generate_explorer_html(&json_paths, &explorer_output_path) {
732 eprintln!("Failed to generate explorer HTML: {}", err);
733 }
734
735 Ok(())
736}