Documentation Index
Fetch the complete documentation index at: https://docs.galileo.ai/llms.txt
Use this file to discover all available pages before exploring further.
Type Alias: DatasetRow
type DatasetRow = object;
Defined in: src/types/new-api.types.ts
DatasetRow
Properties
index
Defined in: src/types/new-api.types.ts
Index
metadata: DatasetRowMetadata | null;
Defined in: src/types/new-api.types.ts
rowId
Defined in: src/types/new-api.types.ts
Row Id
values
values: (
| string
| number
| {
[key: string]: null | string | number;
}
| null)[];
Defined in: src/types/new-api.types.ts
Values
valuesDict
Defined in: src/types/new-api.types.ts
Values Dict
Index Signature
[key: string]:
| null
| string
| number
| {
[key: string]: null | string | number;
}