hnswsqlite
Version:
Vector search with HNSWlib and SQLite in TypeScript.
14 lines (13 loc) • 427 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MediaPipePlugin = void 0;
class MediaPipePlugin {
constructor() {
this.name = 'mediapipe';
}
async generateEmbedding(input) {
// TODO: Implement using MediaPipe (image/video feature extraction)
throw new Error('MediaPipe embedding not implemented yet.');
}
}
exports.MediaPipePlugin = MediaPipePlugin;