@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
12 lines • 371 B
TypeScript
import type { PipelineExecutionStatus } from './pipeline-execution-status.js';
/**
* Representation of the 'BasePipelineMinimalResponse' schema.
*/
export type BasePipelineMinimalResponse = {
/**
* @example "uuid"
*/
id: string;
status: PipelineExecutionStatus;
} & Record<string, any>;
//# sourceMappingURL=base-pipeline-minimal-response.d.ts.map