@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
16 lines • 430 B
TypeScript
/**
* Representation of the 'ScopedKeyValueListPair' schema.
*/
export type ScopedKeyValueListPair = {
/**
* Max Length: 1024.
*/
key: string;
value: string[];
/**
* Scope of the metadata filter (e.g., collection, document, chunk)
* Default: "document".
*/
scope?: 'collection' | 'document' | 'chunk';
} & Record<string, any>;
//# sourceMappingURL=scoped-key-value-list-pair.d.ts.map