Compare Eval Summaries
Compare evaluation summaries side-by-side across multiple test executions. Accepts a JSON-encoded array of execution UUIDs; returns per-execution eval metrics keyed by execution ID.
https://api.futureagi.com/simulate/run-tests/{run_test_id}/eval-summary-comparison/ Authentication
Path parameters
UUID of the test run containing the executions to compare.
Query parameters
JSON-encoded array of test execution UUIDs to compare. Must be URL-encoded. Example: ["uuid1","uuid2"].
Response
200 OKDictionary keyed by execution UUID. Each value is an array of evaluation summary objects for that execution.
Errors
Missing, malformed, or empty execution_ids parameter.
{"execution_ids": ["execution_ids must be valid JSON"]}Or when empty:
{"execution_ids": ["execution_ids list is required"]} Missing or invalid X-Api-Key or X-Secret-Key headers.
No test run found with the specified run_test_id.
{"error": "RunTest not found."} Unexpected server error.
{"error": "Unable to fetch eval summary"}