Skip to main content

EvaluationResultsClient

adaline.prompts.evaluations.results returns per-row evaluation results as they become available, with optional grade and score filters. Because rows appear incrementally while an evaluation runs, you can poll this client to surface partial progress. Every method is async. For long-running evaluations, prefer adaline.init_evaluation_results() — it wraps this client in a self-refreshing cache.

Access

The class is also exported directly:
Types from adaline_api:

list()

Fetch a page of evaluation results. Rows are returned as they become available, so you can poll this while an evaluation is still running.

Parameters

See EvaluationResultsQuery for the full shape.

Returns

ListEvaluationResultsResponse with { data: list[EvaluationResult]; pagination: Pagination }.

Example


See Also