UNPKG

@sap-ai-sdk/document-grounding

Version:

> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.

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