UNPKG

@timangames/vector-grounding-service

Version:

A REST wrapper for SAP AI Core Vector API with document grounding capabilities

29 lines (28 loc) 787 B
/** * Collections Controller * Handles collection management operations */ export class CollectionsController { /** * Create a new collection */ createCollection(req: any, res: any, next: any): Promise<any>; /** * Get all collections */ getCollections(req: any, res: any, next: any): Promise<void>; /** * Get a specific collection */ getCollection(req: any, res: any, next: any): Promise<any>; /** * Delete a collection */ deleteCollection(req: any, res: any, next: any): Promise<any>; /** * Get collection creation status */ getCollectionStatus(req: any, res: any, next: any): Promise<any>; } declare const _default: CollectionsController; export default _default;