UNPKG

@vfarcic/dot-ai

Version:

AI-powered development productivity platform that enhances software development workflows through intelligent automation and AI-driven assistance

16 lines 597 B
/** * Embedding Migration Handler * * Handles POST /api/v1/embeddings/migrate requests. * Re-embeds all data in vector collections when switching embedding providers * (e.g., OpenAI 1536-dim → local TEI 384-dim). * * PRD #384: Optional Local Embedding Service */ import { Logger } from '../core/error-handling'; import { RestApiResponse } from './rest-api'; /** * Handle embedding migration request */ export declare function handleEmbeddingMigration(body: unknown, logger: Logger, requestId: string): Promise<RestApiResponse>; //# sourceMappingURL=embedding-migration-handler.d.ts.map