UNPKG

@arizeai/phoenix-client

Version:
14 lines 511 B
import type { ClientFn } from "../types/core"; import type { RanExperiment } from "../types/experiments"; export type GetExperimentResultParams = ClientFn & { /** * The experiment ID. */ experimentId: string; }; /** * A function that gets the result of a experiment. * Fetches the experiment data as well as the runs. */ export declare function getExperiment({ client: _client, experimentId, }: GetExperimentResultParams): Promise<RanExperiment>; //# sourceMappingURL=getExperiment.d.ts.map