OfflineTestResult
The outcome of an offline test run.
Returned by client.offline_tests.run(). Contains the per-example
scoring results plus run-level metadata.
Attributes
PropType
test_run_id?str
The test run ID.
Type
strstatus?str
Final run status.
Type
strui_results_url?Optional[str]
Link to the results page in the dashboard.
Type
Optional[str]Default
Noneresults?List[ScoringResult]
One ScoringResult per dataset example, with per-judge ScorerData entries. When a pass_condition_fn was supplied, each ScorerData.success carries the per-row outcome.
Type
List[ScoringResult]Default
field(default_factory=list)agent_offline_trace_ids?Dict[str, str]
Mapping of example ID to the offline trace produced by the agent entrypoint (agent testing only).
Type
Dict[str, str]Default
field(default_factory=dict)passed?Optional[bool]
Whether every row passed its pass condition.Returns None when no pass condition was evaluated.
Type
Optional[bool]