Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.08 KB

README.md

File metadata and controls

34 lines (26 loc) · 1.08 KB

Documentation Embedding

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.

Features

  • 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

  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
Loading

Settings