UNPKG

@arizeai/phoenix-client

Version:

A client for the Phoenix API

13 lines 575 B
import { ClientFn } from "../types/core.js"; import { DatasetSelector, Dataset } from "../types/datasets.js"; export type GetDatasetParams = ClientFn & { dataset: DatasetSelector; versionId?: string; }; /** * Get dataset info and examples from the dataset * @param dataset - Dataset selector (ID or name) * @param versionId - Optional specific version ID (if omitted, returns data from the latest version) */ export declare function getDataset({ client: _client, dataset, versionId, }: GetDatasetParams): Promise<Dataset>; //# sourceMappingURL=getDataset.d.ts.map