@arizeai/phoenix-client
Version:
A client for the Phoenix API
10 lines • 391 B
TypeScript
import { ClientFn } from "../types/core";
import { DatasetInfo } from "../types/datasets";
export type GetDatasetParams = ClientFn & {
datasetName: string;
};
/**
* Get the information of a dataset via the name
*/
export declare function getDatasetInfoByName({ client: _client, datasetName, }: GetDatasetParams): Promise<DatasetInfo>;
//# sourceMappingURL=getDatasetInfoByName.d.ts.map