Spaces:
Sleeping
Sleeping
File size: 2,244 Bytes
19e88d2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | /**
* Elements configurable by a dataset library.
*/
export interface DatasetLibraryUiElement {
/**
* Pretty name of the library.
* displayed (in tags?, and) on the main
* call-to-action button on the dataset page.
*/
prettyLabel: string;
/**
* Repo name of the library's (usually on GitHub) code repo
*/
repoName: string;
/**
* URL to library's (usually on GitHub) code repo
*/
repoUrl: string;
/**
* URL to library's docs
*/
docsUrl?: string;
}
export declare const DATASET_LIBRARIES_UI_ELEMENTS: {
mlcroissant: {
prettyLabel: string;
repoName: string;
repoUrl: string;
docsUrl: string;
};
webdataset: {
prettyLabel: string;
repoName: string;
repoUrl: string;
docsUrl: string;
};
datasets: {
prettyLabel: string;
repoName: string;
repoUrl: string;
docsUrl: string;
};
pandas: {
prettyLabel: string;
repoName: string;
repoUrl: string;
docsUrl: string;
};
dask: {
prettyLabel: string;
repoName: string;
repoUrl: string;
docsUrl: string;
};
distilabel: {
prettyLabel: string;
repoName: string;
repoUrl: string;
docsUrl: string;
};
fiftyone: {
prettyLabel: string;
repoName: string;
repoUrl: string;
docsUrl: string;
};
lance: {
prettyLabel: string;
repoName: string;
repoUrl: string;
docsUrl: string;
};
argilla: {
prettyLabel: string;
repoName: string;
repoUrl: string;
docsUrl: string;
};
polars: {
prettyLabel: string;
repoName: string;
repoUrl: string;
docsUrl: string;
};
duckdb: {
prettyLabel: string;
repoName: string;
repoUrl: string;
docsUrl: string;
};
datadesigner: {
prettyLabel: string;
repoName: string;
repoUrl: string;
docsUrl: string;
};
};
export type DatasetLibraryKey = keyof typeof DATASET_LIBRARIES_UI_ELEMENTS;
//# sourceMappingURL=dataset-libraries.d.ts.map |