Documentation Embedding
1.0.0
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.
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