Retrieval without a server, a vector database, or a per-query API bill. Paste your own text, and this page chunks it, embeds every chunk with a real embedding model running on your own hardware through WebGPU, and ranks the chunks against your query by cosine similarity. The model downloads once and only when you ask for it. Your text never leaves this tab. Background: on-device RAG without the vector database.
The standard advice for retrieval is to pay an embedding API per document, push the vectors into a hosted vector database, and pay again per query. For a corpus the size most small operations actually have, a handbook, a product catalog, a few hundred support answers, all three of those line items are optional. The embeddings can be computed in the browser on the visitor's own chip, and the search is a dot product over an array. This tool is the honest demonstration: the ranking you see is a plain JavaScript loop over a plain JavaScript array of vectors, with no index structure at all, because at this scale that is genuinely fast enough. The costs you can see here are the only real ones: the one-time model download and the time it takes to embed your text.