summarize-experiment
Retrieves experiment overview, top runs sorted by metric or start time, and metric statistics in one API call, reducing multiple round-trips.
Instructions
Aggregated experiment view: experiment overview + topN runs (sorted by metric or start_time) + metric stats (min/max/mean across topN) in a single call. Replaces 3-5 round-trips of get-experiment + search-runs + get-best-run.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| experimentId | Yes | Experiment ID | |
| topN | No | Number of top runs to return (default 5, max 20) | |
| metric | No | Metric key to sort topN by; if omitted, sorts by start_time DESC | |
| ascending | No | 'true' or 'false' (default 'false'). Only meaningful when metric is set. | |
| extractFields | No | Comma-separated dotted paths to project from response. Use `*` as wildcard. |