显示交互式最终报告
(final_state: Dict, results_dir: Path)
| 422 | |
| 423 | |
| 424 | def display_final_report_interactive(final_state: Dict, results_dir: Path): |
| 425 | """显示交互式最终报告""" |
| 426 | |
| 427 | markdown_content, save_path = generate_final_report(final_state, results_dir) |
| 428 | generator = FinalReportGenerator(final_state) |
| 429 | generator.display_interactive_report(markdown_content, save_path) |
| 430 | |
| 431 | return save_path |
nothing calls this directly
no test coverage detected