In this module, we’ll cover how to build a RAG project using alternate APIs by Gemini, Replicate, and 300+ LLMs apart from OpenAI.
Here you'll use Google Gemini Pro for chat completions/generation and Sentence Transformer for embeddings.
If you've already built a pipeline using OpenAI, you can jump to .
Introduction
We’ll walk you through setting up a RAG project using Gemini Pro and Pathway.
Key Features:
Create an in-memory persistent vector store with real-time document indexing using Pathway that can easily work with documents in your Google Drive, Microsoft 365 SharePoint, Databases, Local directory, etc.
Connect an LLM model of choice () to your knowledge base.
Get quality, accurate, and precise responses to your questions.
Ask questions about folders, files, or all your documents easily, with the help of filtering options.
Get an executive outlook for a question on different files to easily access available knowledge in your documents.
Prerequisites
Before we begin, ensure you have the following requirements we shared earlier:
Docker Desktop: This tool allows you to run applications in isolated containers. Download Docker Desktop. (Note: Your antivirus software might block the installation, so temporarily disable it if needed.)
If you’re using VS Code, consider installing the Docker extension to manage containers directly from the editor.
Step-by-Step Process
Step 1: Verify Docker Installation
First, let’s verify that Docker is properly installed and open in your system. Open your terminal (Command Prompt on Windows) and run:
docker --version
You should see the Docker version information if it's installed correctly.
Step 2: Clone the LLM App Templates Repository
Next, clone the llm-app repository from GitHub. This repository contains all the files you’ll need.
If you get an error because you have previously cloned an older version of the llm-app repository, ensure you're in the correct repository directory and update it using:
git pull
This will update your local repository with the latest changes from the remote repository.
Step 3: Navigate to the Project Directory
Change to the directory where the relevant example of your current project is located.
cd examples/pipelines/demo-question-answering
Step 4: Update your .env File with your Gemini API Key
If you've already built a pipeline with Open AI, this is where things get slightly different. Configure your key in a .env file by providing it as follows:
GEMINI_API_KEY=*******
Replace ******* with your actual Gemini API key. Save the file as .env in the demo-question-answering folder.
Step 5: Update requirements.txt File
Add the following dependencies to the requirements.txt file that enable us to use Pathway LiteLLM wrapper, Google's APIs, and Sentence Transformers (a.k.a. SBERT) for embeddings:
Build the Docker image. This step might take a few minutes depending on your machine. Ensure you have enough space (approximately 8 GB).
docker build -t raggem .
Step 10: Run the Docker Container
Run the Docker container, mounting the data folder and exposing port 8000.
For Windows:
docker run -v "${PWD}/data:/app/data" -p 8000:8000 raggem
For Linux/Mac:
docker run -v "$(pwd)/data:/app/data" -p 8000:8000 --env-file .env raggem
Handling Port Conflicts: If port 8000 is already in use, specify a different port. For example, to use port 8080:
For Windows:
docker run -v "${PWD}/data:/app/data" -p 8080:8000 raggem
For Linux/Mac:
docker run -v "$(pwd)/data:/app/data" -p 8080:8000 --env-file .env raggem
Step 11: Check the List of Files
To see the list of files in the data folder, use the curl command. While doing this ensure that you'll need to update the port here as well if you changed it in the previous step while managing port conflicts:
This will return the list of files that are ingested as an external data source for your RAG project.
Step 12: Last Step – Run the RAG Service
You can now run the RAG service. Start by asking a simple question. For example:
For Linux/Mac Users (curl command):
You can use the following curl command to ask a simple question to the RAG service:
curl -X 'POST' 'http://0.0.0.0:8000/v1/pw_ai_answer' -H 'accept: */*' -H 'Content-Type: application/json' -d '{
"prompt": "What are the terms and conditions"
}'
Note: If you change the port from 8000 to another value (e.g., 8080), make sure to update the curl command accordingly. For example, replace 8000 with 8080 in the URL.
It should return the following answer:
"The terms and conditions are: Rights Granted, Use of Titles, Warranties and Representations, Indemnification, Disclaimers, Limitation of Liability, Governing Law, Dispute Resolution, Term, Termination, Entire Agreement, Assignment, Waiver, Severability, Notices, Counterparts and Construction."
For Windows Users (PowerShell Invoke-WebRequest):
If you're using PowerShell on Windows, use the Invoke-WebRequest command to ask the same question:
Invoke-WebRequest -Uri 'http://0.0.0.0:8000/v1/pw_ai_answer' `
-Method POST `
-Headers @{ "accept" = "*/*"; "Content-Type" = "application/json" } `
-Body '{"prompt": "What are the terms and conditions?}'
Note: Just like with curl, if you change the port to a different value (e.g., 8080), make sure to update the URL in the Invoke-WebRequest command.
This will return the same response with the answer:
"The terms and conditions are: Rights Granted, Use of Titles, Warranties and Representations, Indemnification, Disclaimers, Limitation of Liability, Governing Law, Dispute Resolution, Term, Termination, Entire Agreement, Assignment, Waiver, Severability, Notices, Counterparts and Construction."
Conclusion
This will help you set up a powerful RAG pipeline with Gemini Pro.
If you get stuck, you should explore the Pathway documentation here and try to find the issue yourself once. It will also help you understand the code better, and many of your queries can actually be figured out via LLMs as well.
Embedding Model Selection: Chose avsolatorio/GIST-small-Embedding-v0 for embedding chunked texts. This model is compact and performed well in tests. Other options include mixedbread-ai/mxbai-embed-large-v1and avsolatorio/GIST-Embedding-v0(For other possible choices, take a look at the managed by HuggingFace)
If still needed, you are very welcomed to ask it in the Discord channel for this bootcamp or also post your query on . It is generally a great practice to post your queries in the most relevant open source communities.