import type { VectorKeyValueListPair } from './vector-key-value-list-pair.js'; /** * Schema for a text-only chunk. */ export type TextOnlyBaseChunkCreate = { content: string; /** * Default: []. */ metadata?: VectorKeyValueListPair[]; } & Record; //# sourceMappingURL=text-only-base-chunk-create.d.ts.map