UNPKG

hnswsqlite

Version:

Vector search with HNSWlib and SQLite in TypeScript.

7 lines (6 loc) 207 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.searchDocuments = searchDocuments; async function searchDocuments(store, query, k) { return store.search(query, k); }