UNPKG

react-ai-faq-chat

Version:

A smart AI-powered FAQ chatbot

8 lines (6 loc) 198 B
import { IndexFlatL2 } from "faiss-node"; export function createVectorStore() { const dim = 4096; // match your embedding dimension const index = new IndexFlatL2(dim); return index; }