UNPKG

@arizeai/phoenix-client

Version:
12 lines 555 B
import type { ClientFn } from "../types/core"; import type { DatasetInfo, DatasetSelector } from "../types/datasets"; export type GetDatasetInfoParams = ClientFn & { dataset: DatasetSelector; }; /** * Get an overview of the information in a dataset * Note: this does not include the examples contained in the dataset * Dataset info is not version-specific, only examples are versioned */ export declare function getDatasetInfo({ client: _client, dataset, }: GetDatasetInfoParams): Promise<DatasetInfo>; //# sourceMappingURL=getDatasetInfo.d.ts.map