This tool provides a fast and efficient way to convert text into vector embeddings and store them in the Qdrant search engine. Built with Rust, this tool is designed to handle large datasets and deliver lightning-fast search results.
- Convert text into vector embeddings using popular AI libraries such as ChatGPT, BERT or FastText
- Store vector embeddings in the Qdrant search engine for fast and efficient search
- Use a REST API to query the search engine and retrieve similar texts or documents
flowchart
client((Client))
backend((Backend))
engine[(Vector Embedding Engine)]
AI((OpenAI Embedding Model))
client --> |1. Request| backend
backend --> |2. Request| AI
AI --> |3. Vector| backend
subgraph SERVER
backend --> |4. Vector| engine
backend --> |5. Request| engine
engine --> |6. Nearest| backend
end
backend --> |7. Response| client
- Qdrant (here is a template for using Docker)
- Rust