@arizeai/phoenix-client
Version:
A client for the Phoenix API
12 lines • 545 B
TypeScript
import { ClientFn } from "../types/core";
import { 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