@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 • 501 B
TypeScript
import type { ConfigurationDocument } from './configuration-document.js';
/**
* Representation of the 'ListConfigurationDocuments' schema.
*/
export type ListConfigurationDocuments = {
/**
* Total number of documents returned.
* @example 1
*/
count?: number;
/**
* List of document objects. It will be empty array if no records found.
*/
resources?: ConfigurationDocument[];
} & Record<string, any>;
//# sourceMappingURL=list-configuration-documents.d.ts.map