/** * Collection metadata during ingestion */ export type VectorKeyValueListPair = { /** * Max Length: 1024. */ key: string; value: string[]; } & Record; //# sourceMappingURL=vector-key-value-list-pair.d.ts.map