import type { VectorKeyValueListPair } from './vector-key-value-list-pair.js'; /** * Schema for a text-only chunk. */ export type TextOnlyBaseChunk = { content: string; /** * Default: []. */ metadata?: VectorKeyValueListPair[]; /** * Unique identifier of a chuk. * Format: "uuid". */ id: string; } & Record; //# sourceMappingURL=text-only-base-chunk.d.ts.map