UNPKG

hnswsqlite

Version:

Vector search with HNSWlib and SQLite in TypeScript.

10 lines (8 loc) 329 B
import { EmbeddingPlugin } from './types'; export class MediaPipePlugin implements EmbeddingPlugin { name = 'mediapipe'; async generateEmbedding(input: Buffer): Promise<number[]> { // TODO: Implement using MediaPipe (image/video feature extraction) throw new Error('MediaPipe embedding not implemented yet.'); } }