Skip to main content

Vector Store RAG

Retrieval Augmented Generation, or RAG, is a pattern for training LLMs on your data and querying it.

RAG is backed by a vector store, a vector database which stores embeddings of the ingested data.

This enables vector search, a more powerful and context-aware search.

We've chosen Astra DB as the vector database for this starter project, but you can follow along with any of Langflow's vector database options.

Prerequisites


Vector Store RAG


Create the vector store RAG project

  1. From the Langflow dashboard, click New Project.
  2. Select Vector Store RAG.
  3. The Vector Store RAG project is created.

The vector store RAG flow is built of two separate flows. Ingestion and query.

The ingestion part (bottom of the screen) populates the vector store with data from a local file. It ingests data from a file (File), splits it into chunks (Split Text), indexes it in Astra DB (Astra DB), and computes embeddings for the chunks using an embedding model (OpenAI Embeddings).

tip

Embeddings are numerical vectors that represent data meaningfully. They enable efficient similarity searches in vector stores by placing similar items close together in the vector space, enhancing search and recommendation tasks.

This part creates a searchable index to be queried for contextual similarity.

The query part (top of the screen) allows users to retrieve embedded vector store data. Components:

  • Chat Input defines where to send the user input (coming from the Playground).
  • OpenAI Embeddings is the model used to generate embeddings from the user input.
  • Astra DB retrieves the most relevant chunks from the Astra DB database (here, used for search, not ingestion).
  • Parse Data converts chunks coming from the Astra DB component into plain text to feed a prompt.
  • Prompt takes in the user input and the retrieved chunks as text and builds a prompt for the model.
  • OpenAI takes in the prompt to generate a response.
  • Chat Output component displays the response in the Playground.
  1. To create an environment variable for the OpenAI component, in the OpenAI API Key field, click the Globe button, and then click Add New Variable.
    1. In the Variable Name field, enter openai_api_key.
    2. In the Value field, paste your OpenAI API Key (sk-...).
    3. Click Save Variable.
  2. To create environment variables for the Astra DB and Astra DB Search components:
    1. In the Token field, click the Globe button, and then click Add New Variable.
    2. In the Variable Name field, enter astra_token.
    3. In the Value field, paste your Astra application token (AstraCS:WSnyFUhRxsrg…).
    4. Click Save Variable.
    5. Repeat the above steps for the API Endpoint field, pasting your Astra API Endpoint instead (https://ASTRA_DB_ID-ASTRA_DB_REGION.apps.astra.datastax.com).
    6. Add the global variable to both the Astra DB and Astra DB Search components.

Run the Vector Store RAG

  1. Click the Playground button. Here you can chat with the AI that uses context from the database you created.
  2. Type a message and press Enter. (Try something like "What topics do you know about?")
  3. The bot will respond with a summary of the data you've embedded.

Hi, how can I help you?