@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
20 lines • 623 B
TypeScript
/**
* Representation of the 'DocumentMetadata' schema.
*/
export type DocumentMetadata = {
/**
* Metadata key name.
* @example "contentObjectId"
*/
key: string;
/**
* An array of string values associated with the metadata key. If the key already exists, its values will be overwritten. Setting the value to null will delete the metadata key-value pair.
*/
value: string[] | null;
/**
* Match mode for the metadata key (ANY or ALL).
* @example "ANY"
*/
matchMode?: 'ANY' | 'ALL' | any;
} & Record<string, any>;
//# sourceMappingURL=document-metadata.d.ts.map