Building a RAG with Astro, FastAPI, SurrealDB and Llama 3.1
Large Language Models have revolutionized how we retrieve information or build search systems. Retrieval-augmented generation (RAG) methodology has become a common way to access or extract information.
This guide teaches you how to build a Retrieval-Augmented Generation application using SurrealDB, Fireworks, FastAPI, and Astro. By the end of this guide, you will be able to update the chatbot’s knowledge visually and obtain the latest and personalized responses to your queries.
The following technologies are used in creating our RAG application:
Technology
Type
Description
FastAPI
Framework
A high performance framework to build APIs with Python 3.8+.
Astro
Framework
Framework for building fast, modern websites with serverless backend support.
TailwindCSS
Framework
CSS framework for building custom designs.
SurrealDB
Platform
A multi-model database platform.
Fireworks
Platform
Lightning-fast Inference platform to run generative AI models.
High-Level Data Flow and Operations
This is a high-level architecture of how data is flowing and operations that take place 👇🏻
When a user asks a question, relevant vectors to the latest user question are queried from SurrealDB. Further, they are combined with the user messages to create a system context. The response is then streamed to the user from Fireworks hosted Llama 3.1 405B Instruct Model.
When a user updates the existing knowledge other system, vector embeddings with metadata are created for the particular information, and then pushed to SurrealDB
Step 1: Setup SurrealDB Server
You can find various methods to install and run the SurrealDB server in the documentation. Let's opt for installing SurrealDB using its dedicated install script for our scenario. In your terminal window, execute the following command:
12
curl --proto '=https'--tlsv1.2-sSf https://install.surrealdb.com| sh
The above command attempts to install the latest version of SurrealDB (per your platform and CPU type) into the /usr/local/bin folder in your system.
Once that is done, execute the following command in your terminal window:
Starts the SurrealDB server at 0.0.0.0:4304 network address.
Enables trace level logging producing verbose logs in your terminal window.
Sets the user and password of the default database as root.
Creates the file mydatabase.db to persist data on your filesystem.
Step 2: Generate Fireworks AI API Key
Model inference requests to the Fireworks API require an API Key. To generate this API key, log in to your Fireworks account and navigate to API Keys. Enter a name for your API key and click the Create Key button to generate a new API key. Copy and securely store this token for later use as FIREWORKS_API_KEY environment variable.
Locally, set and export the FIREWORKS_API_KEY environment variable by executing the following command:
The above code uses the os module to load the environment variable FIREWORKS_API_KEY as Firework’s API Key.
Use Fireworks Nomic AI Embeddings Model
To use FireworksEmbeddings class to create an embeddings generator using the nomic-ai/nomic-embed-text-v1.5, append the following code in main.py file:
123
# Load the nomic-embed-text-v1.5 embedding models via Langchain Fireworks Integration
The above code uses the following values to establish a SurrealDB Vector Store with LangChain:
ws://localhost:4304/rpc as the database URL to establish a WebSocket connection with SurrealDB. Using a WebSocket connection allows to send and receive messages from SurrealDB using the WebSocket API.
root as both the username and password of the SurrealDB instance.
vectors as the collection name of the vector store to and from which the relevant vectors will be inserted and queried from.
Uses embeddings generator as the embedding function.
Initialize FastAPI App
To initialize a FastAPI application, append the following code in main.py file:
123456789101112
# Initialize FastAPI App
app = FastAPI()
# Add CORS middleware
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
The code above creates a FastAPI instance and uses the CORSMIddleware middleware to enable Cross Origin requests. This allows your frontend to successfully POST to the RAG application endpoints to fetch responses to the user query, regardless of the port it is running on.
Create a Knowledge Update API endpoint
To update application’s knowledge in realtime by generating vector embeddings and inserting them into SurrealDB, you’ll create an /update endpoint in your FastAPI application. Append the following code in main.py file:
Accepts a single string as messages containing comma (,) separated messages to be inserted in your SurrealDB vector store.
Awaits connection set up with SurrealDB.
Creates metadata list, each item being length of each message received as input.
Creates ids list, each item being a randomly generated id for each message received as input.
Using the embeddings generator passed as the embeddings function, it generates the vector embedding of each message. Alongwith each message’s metadata, it inserts the vector embedding into the SurrealDB vector store.
Create a Chat API endpoint
To generate personalized responses that uses the application’s existing knowledge, you’ll create an /chat endpoint in your FastAPI application. Append the following code in main.py file:
Defines a system prompt to restrict it to answer what it already knows.
Performs a similarity search on the latest Message, which represents a user query.
Loops over all similar vector embeddings and appends them into the system prompt defined earlier.
Prepends a Message model, representing role of the system and it’s content as the system prompt created.
Uses fireworks Chat Completion API to stream LLAMA 3.1 70B Chat model context aware responses.
Returns a StreamingResponse using the yield_content function.
The yield_content function loops over each Document (received as the similar vector with it’s metadata), and streams the content value of it as part of the API response.
123456
# Function to yield content from each choice
def yield_content(response):
for chunk in response:
if chunk.choices[0].delta.content:
yield chunk.choices[0].delta.content
With all that done, here’s how our main.py will finally look like containing both the endpoints:
Execute the following command in another terminal window:
12
uvicorn main:app --reload
The app should be running on localhost:8000. Let’s keep it running while we create an user interface to invoke the endpoints to create responses to user queries.
Create a new Astro application
Let’s get started by creating a new Astro project. Open your terminal and run the following command:
12
npm create astro@latest chat-ui
npm create astro is the recommended way to scaffold an Astro project quickly.
When prompted, choose the following:
Empty when prompted on how to start the new project.
Yes when prompted whether to write Typescript.
Strict when prompted how strict Typescript should be.
Yes when prompted to whether install dependencies.
Yes when prompted to whether initialize a git repository.
Once that’s done, you can move into the project directory and start the app:
123
cd chat-ui
npm run dev
The app should be running on localhost:4321. Let's close the development server as we move on to integrate TailwindCSS into the application.
Add Tailwind CSS to the application
For styling the app, you will be using Tailwind CSS. Install and set up Tailwind CSS at the root of our project's directory by running:
12
npx astro add tailwind
When prompted, choose:
Yes when prompted to install the Tailwind dependencies.
Yes when prompted to generate a minimal tailwind.config.mjs file.
Yes when prompted to make changes to Astro configuration file.
With choices as above, the command finishes integrating TailwindCSS into your Astro project. It installed the following dependency:
tailwindcss: TailwindCSS as a package to scan your project files to generate corresponding styles.
@astrojs/tailwind: The adapter that brings Tailwind's utility CSS classes to every .astro file and framework component in your project.
To create reactive interfaces quickly, let’s move onto integrating React in your application.
Integrate React in your Astro project
To prototype the reactive user interface quickly, you are gonna use React as the library with Astro. In your terminal window, execute the following command:
12
npx astro add react
npx allows us to execute npm packages binaries without having to first install it globally.
When prompted, choose the following:
Yes when prompted whether to install the React dependencies.
Yes when prompted whether to make changes to Astro configuration file.
Yes when prompted whether to make changes to tsconfig.json file.
To create conversation user interface easily, let’s move onto installing an AI SDK in your application.
Install an AI SDK and Axios
In your terminal window, run the command below to install the necessary library for building the conversation user interface:
12
npm install ai axios
The above command installs the following:
ai library to build AI-powered streaming text and chat UIs.
axios library to make HTTP requests.
Build Conversation User Interface
Inside src directory, create a Chat.jsx file with the following code:
Imports the useChat hook by ai SDK to manage the conversation between user and the application. It takes care of saving the entire conversation (on the client-side) and using them as the request body when it calls the user defined api endpoint to fetch the response from chatbot.
Exports a React component that returns a form containing an <input> element to allow users to enter their query. It then loops over all the messages in the entire conversation, including the latest response to the user query.
Now, let’s create a component that will allow the user to supply some strings to the application to take into consideration before it answers any of the user query.
Build User Interface to Update Application’s Knowledge
Inside src directory, create a Update.jsx file with the following code:
Exports a React component that returns a form containing an <textarea> element to allow users to enter multiple strings, wherein each string is represented between comma(s).
The changes above being with importing both the Chat and Update React components. Then, it uses Astro's client:load directive to make sure that both the components are loaded and hydrated immediately on the page.
Run Astro Application Locally
Run your Astro application by executing the following command in another terminal window:
Congratulations, you created a Retrieval-Augmented Generation application using SurrealDB and Fireworks AI. With SurrealDB’s vector store, you are able to insert and update vector embeddings on the fly over WebSockets, and perform similarity search to user queries using vector embeddings generated internally for you.
Further, using Fireworks AI, you are able to invoke Llama 3.1 70B Chat model with system context and generate personalized responses to user queries.