UNPKG

vecstore-js

Version:

A pluggable, browser-native vector database using IndexedDB with support for HNSW and local embeddings.

7 lines (6 loc) 175 B
export class DummyEmbedder { async embed(text) { // Just converts each character to its char code return text.split('').map(c => c.charCodeAt(0)); } }