UNPKG

@arizeai/phoenix-client

Version:

A client for the Phoenix API

21 lines 673 B
import { ClientFn } from "../types/core"; import { ExperimentRun } from "../types/experiments"; export type GetExperimentRunsParams = ClientFn & { /** * The experiment ID. */ experimentId: string; /** * The pagination size by which to pull runs * Exposed for controlling the rate at which runs are pulled * @default 100 */ pageSize?: number; }; /** * A function that gets all the runs (e.g. the results) of a experiment */ export declare function getExperimentRuns({ client: _client, experimentId, pageSize, }: GetExperimentRunsParams): Promise<{ runs: ExperimentRun[]; }>; //# sourceMappingURL=getExperimentRuns.d.ts.map