UNPKG

@arizeai/phoenix-client

Version:

A client for the Phoenix API

14 lines 501 B
import { ClientFn } from "../types/core"; import { 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