/** * Representation of the 'RetrievalScopedKeyValueListPair' schema. */ export type RetrievalScopedKeyValueListPair = { /** * Max Length: 1024. */ key: string; value: string[]; /** * Default: "document". */ scope?: 'repository' | 'document' | 'chunk'; } & Record; //# sourceMappingURL=retrieval-scoped-key-value-list-pair.d.ts.map