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