#125 · Primary category: Inference & Local Deploy

fastembed-rs

embeddings fastembed rag reranker reranking retrieval retrieval-augmented-generation vector-search

Rust library for generating vector embeddings and reranking locally!

Project last updated:08/27/26

GitHub Stars

1.0K

Forks

137

Contributors

49

License

Apache-2.0

Why we included this project

Rust teams often face a choice between calling a hosted embedding API or standing up their own inference service. fastembed-rs sidesteps that by running ONNX models like BGE, MiniLM, and multilingual E5 directly inside your binary, using the ort runtime and Hugging Face tokenizers. That makes it handy for RAG and semantic search work when you want synchronous, dependency-light inference without pulling in Tokio. It also means documents never leave your machine, which matters for privacy-sensitive or offline setups. Just be aware it is an inference library, not a search system, so you will still pair it with a vector store and your own retrieval logic.

Articles for this project

No articles for this project yet.

To suggest a topic or contribute an article, contact us.

Related projects in this category