Skip to main content

aip_sdk.TraceRunResultsPage

aip_sdk.TraceRunResultsPage(results: list[TraceScoreResult], metrics: list[TraceMetric], total: int, page: int, page_size: int)

Paginated result of trace_results().

Identical in shape to RunResultsPage, but declared with the trace-metric row identity so partition_type/partition_id/target_ref/ trace_id type-check without a cast — unlike results(), whose declared return type only names the base ScoreResult/Metric fields.

Attributes

  • results list[TraceScoreResult]: Per-row trace results. A metric measured at more than one target appears once per target here, each entry distinguished by its own identity.
  • metrics list[TraceMetric]: Aggregated per-metric summaries, one entry per ``(metric, partition_type, partition_id)`` measured in this run.
  • total int: Total row count across all pages.
  • page int: The page number returned (1-based).
  • page_size int: Rows requested per page.

aip_sdk.TraceRunResultsPage.metrics​

aip_sdk.TraceRunResultsPage.metrics: list[TraceMetric]

No docstring is defined in the source.

aip_sdk.TraceRunResultsPage.page​

aip_sdk.TraceRunResultsPage.page: int

No docstring is defined in the source.

aip_sdk.TraceRunResultsPage.page_size​

aip_sdk.TraceRunResultsPage.page_size: int

No docstring is defined in the source.

aip_sdk.TraceRunResultsPage.results​

aip_sdk.TraceRunResultsPage.results: list[TraceScoreResult]

No docstring is defined in the source.

aip_sdk.TraceRunResultsPage.total​

aip_sdk.TraceRunResultsPage.total: int

No docstring is defined in the source.