@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
35 lines • 810 B
TypeScript
/**
* Representation of the 'SearchPipeline' schema.
*/
export type SearchPipeline = {
/**
* Search for metadata happens at key level. Pipelines matching the search criteria will be returned.
* @example [
* {
* "key": "purpose",
* "value": [
* "demonstration"
* ]
* },
* {
* "key": "sample-key",
* "value": [
* "sample-value1",
* "sample-value2"
* ]
* }
* ]
*/
dataRepositoryMetadata?: ({
/**
* Max Length: 1024.
* Min Length: 1.
*/
key: string;
/**
* Min Items: 1.
*/
value: string[];
} & Record<string, any>)[];
} & Record<string, any>;
//# sourceMappingURL=search-pipeline.d.ts.map