PlanBuilder converts intent into deterministic execution plans.
Back to Overview| Query | Plan Generated |
|---|---|
| "analyze best board" | find_best_board -> get_board_summary -> analyze_component_impact -> visualize_yield_distribution |
| "compare boards 5 and 12" | get_board_summary (x2) -> compare_boards |
| "compare top 5 boards" | find_best_board -> compare_boards (placeholder IDs in plan) |
| Query | Plan Generated |
|---|---|
| "run physics model" | run_physics_model -> analyze_component_impact |
| "analyze component impact" | analyze_component_impact |
| Query | Plan Generated |
|---|---|
| "show yield distribution" | visualize_yield_distribution |
| "histogram" | visualize_yield_distribution |
| Query | Plan Generated |
|---|---|
| "show board 5 summary" | get_board_summary |
| "find top 10 boards" | find_best_board |
| Query | Plan Generated |
|---|---|
| "export data to csv" | export_data (format csv, filename yield_data_export.csv) |