delete draft file

This commit is contained in:
sabrinaaquino
2025-01-15 12:48:12 -03:00
parent 1bc525e5aa
commit bd2a112e20
@@ -1,462 +0,0 @@
---
title: Agentic RAG Discord Bot with CAMEL-AI
weight: 14
partition: build
---
# Building an Agentic RAG Discord ChatBot with Qdrant, CAMEL-AI, and OpenAI
Unlike traditional RAG techniques, which passively retrieve context and generate responses, **agentic RAG** involves active decision-making and multi-step reasoning by the chatbot. This approach allows the bot to dynamically interact with various data sources, adapt its behavior based on context, and perform more complex tasks autonomously.
In this tutorial, you will build a Discord chatbot that leverages agentic RAG principles to deliver intelligent, context-aware responses by retrieving and answering questions based on Qdrant's documentation. The bot integrates Qdrant for efficient vector search, [CAMEL-AI](https://www.camel-ai.org/) for sophisticated dialogue management, and OpenAI's models for generating high-quality embeddings and responses. You'll learn how to set up the environment, scrape and prepare data, and deploy a fully functional chatbot on Discord.
Let’s get started!
---
## Workflow Overview
Below is a high-level look at our Agentic RAG workflow:
| Step | Description |
|-------------------------|----------------------------------------------------------------------------------------------------------|
| 1. Environment Setup | Install necessary libraries and dependencies. |
| 2. Qdrant Configuration | Create a Qdrant Cloud account, set up a cluster, and connect using the API key and cluster URL. |
| 3. Data Scraping | Scrape relevant documentation from Qdrant's website for knowledge base creation. |
| 4. Chunking & Embedding | Chunk large texts and generate embeddings using OpenAI. |
| 5. Vector Store Creation | Create and populate a Qdrant collection with the generated embeddings. |
| 6. Context Retrieval | Define a function to retrieve context from Qdrant based on user queries. |
| 7. Discord Bot Setup | Configure a new Discord bot, invite it to a server, and grant necessary permissions. |
| 8. Bot Integration | Integrate the bot with Qdrant and CAMEL-AI to handle user interactions and provide responses. |
| 9. Testing | Test the bot in a live Discord server. |
## Architecture Diagram (placeholder)
Below is the architecture diagram representing the workflow and interactions of the chatbot:
![placeholder-image](/documentation/examples/agentic-rag-camelai/diagram.jpg)
---
## **Step 1: Environment Setup**
Before diving into the implementation, here's a high-level overview of the stack we'll use:
| **Component** | **Purpose** |
|-----------------|-------------------------------------------------------------------------------------------------------|
| **Qdrant** | Vector database for storing and querying document embeddings. |
| **OpenAI** | Embedding and language model for generating vector representations and chatbot responses. |
| **CAMEL-AI** | Dialogue management framework that powers the chatbot's reasoning and interactions. |
| **Discord API** | Platform for deploying and interacting with the chatbot. |
### Install Dependencies
To build our chatbot with hybrid search capabilities, we'll need a set of core libraries for embedding generation, vector storage, web scraping, and interacting with the Discord API.
Below is the command to install all necessary dependencies:
```python
!pip install openai qdrant-client camel-ai[all]==0.2.16 requests beautifulsoup4 nest_asyncio discord.py tqdm python-dotenv
```
### Dependency Breakdown
Here’s a quick explanation of what each dependency does:
- `openai`: Generates high-quality embeddings and chatbot responses.
- `qdrant-client`: Connects to and interacts with the Qdrant vector database.
- `camel-ai`: Provides the CAMEL-AI framework for multi-agent dialogue management.
- `requests`: Handles HTTP requests for web scraping.
- `beautifulsoup4`: Parses HTML content from the scraped web pages.
- `nest_asyncio`: Allows nested event loops, required for running asynchronous Discord bots.
- `discord.py`: Interfaces with the Discord API to create and manage the bot.
- `tqdm`: Displays progress bars during long-running operations like web scraping.
- `python-dotenv`: Package to load the environment variables
---
### Set Up OpenAI Client
1. **Create an OpenAI Account**: Go to [OpenAI](https://platform.openai.com/signup) and sign up for an account if you don’t already have one.
2. **Generate an API Key**:
- After logging in, click on your profile icon in the top-right corner and select **API keys**.
- Click **Create new secret key**.
- Copy the generated API key and store it securely. You won’t be able to see it again.
Here’s how to set up the OpenAI client in your code:
Create a `.env` file in your project directory and add your API key:
```bash
OPENAI_API_KEY=<your_openai_api_key>
```
Make sure to replace <your_openai_api_key> with your actual API key.
Now, start the OpenAI Client
```python
import openai
import os
from dotenv import load_dotenv
load_dotenv()
openai_client = openai.Client(
api_key=os.getenv("OPENAI_API_KEY")
)
```
## **Step 2: Configure the Qdrant Client**
We'll use Qdrant Cloud as our vector store for document embeddings. Here's how to set it up:
| **Step** | **Description** |
|--------------------------|----------------------------------------------------------------------------------------------------------------------|
| **1. Create an Account** | Sign up for a Qdrant Cloud account at [Qdrant Cloud](https://cloud.qdrant.io). |
| **2. Set Up a Cluster** | Log in, click **Create New Cluster**, select a region, and choose the free tier for testing. |
| **3. Secure Your Details**| Once your cluster is ready, save the **Cluster URL** and **API Key** securely for future use. |
After obtaining your Qdrant Cloud details, add to your `.env` file:
```bash
QDRANT_CLOUD_URL=<your-qdrant-cloud-url>
QDRANT_CLOUD_API_KEY=<your-api-key>
```
Connect to your Qdrant Cloud instance:
```python
from qdrant_client import QdrantClient
# Set your Qdrant Cloud details
QDRANT_CLOUD_URL = os.getenv("QDRANT_CLOUD_URL")
QDRANT_CLOUD_API_KEY = os.getenv("QDRANT_CLOUD_API_KEY")
collection_name = "discord-bot"
client = QdrantClient(
url=QDRANT_CLOUD_URL,
api_key=QDRANT_CLOUD_API_KEY
)
```
Make sure to update the <your-qdrant-cloud-url> and <your-api-key> fields.
---
## **Step 3: Scrape and Prepare Data**
We'll scrape the Qdrant documentation to generate knowledge that the bot can use to answer questions.
```python
import requests
from bs4 import BeautifulSoup
from tqdm import tqdm
qdrant_urls = [
"https://qdrant.tech/documentation/overview",
"https://qdrant.tech/documentation/guides/installation",
"https://qdrant.tech/documentation/concepts/filtering",
"https://qdrant.tech/documentation/concepts/indexing",
"https://qdrant.tech/documentation/guides/distributed_deployment",
"https://qdrant.tech/documentation/guides/quantization"
# Add more URLs as needed
]
def scrape_qdrant_pages(urls):
documents = []
metadata = []
for url in tqdm(urls, desc="Scraping URLs"):
try:
response = requests.get(url, timeout=10)
response.raise_for_status()
soup = BeautifulSoup(response.text, "html.parser")
text = soup.get_text(separator="\n", strip=True)
if text:
documents.append(text)
metadata.append({"source_url": url})
except Exception as e:
print(f"Error scraping {url}: {e}")
return documents, metadata
all_docs, all_metadata = scrape_qdrant_pages(qdrant_urls)
```
## **Step 4: Chunk Large Texts**
Since some of the scraped documents might be large, we need to split them into smaller, manageable chunks before generating embeddings.
```python
def chunk_texts_with_metadata(texts, metadata, max_length=500):
chunks = []
chunk_metadata = []
for doc_index, text in enumerate(texts):
words = text.split()
for i in range(0, len(words), max_length):
chunk = " ".join(words[i:i + max_length])
chunks.append(chunk)
chunk_metadata.append(metadata[doc_index]) # Associate metadata with each chunk
return chunks, chunk_metadata
# Create chunked docs and corresponding metadata
chunked_docs, chunked_metadata = chunk_texts_with_metadata(all_docs, all_metadata)
```
---
## **Step 5: Generate Embeddings Using OpenAI**
We’ll use OpenAI’s embedding model to generate vector representations of the chunked documents.
```python
embedding_model = "text-embedding-3-small"
result = openai_client.embeddings.create(input=chunked_docs, model=embedding_model)
```
---
## **Step 6: Create Points for Qdrant**
Before creating and populating the Qdrant collection, we need to structure the data into points:
```python
from qdrant_client.models import PointStruct
# Create points for Qdrant
points = [
PointStruct(
id=idx, # Unique ID for each point
vector=data.embedding, # Access embedding as an attribute
payload={
"text": text, # Use chunked text
"source_url": chunked_metadata[idx]['source_url'] # Attach corresponding metadata
},
)
for idx, (data, text) in enumerate(zip(result.data, chunked_docs))
]
```
## **Step 7: Create and Populate Qdrant Collection**
### Create the Collection
We create a Qdrant collection to store the document embeddings.
```python
from qdrant_client.models import VectorParams, Distance
if not client.collection_exists(collection_name):
client.create_collection(
collection_name,
vectors_config=VectorParams(
size=1536,
distance=Distance.COSINE,
),
)
```
We use a vector size of 1536 because it's the dimensionality of embeddings produced by OpenAI's model `text-embedding-3-small`.
### Add Data to the Collection
Upload the points to Qdrant:
```python
client.upsert(collection_name=collection_name, points=points)
```
---
## **Step 8: Import and Set the CAMEL-AI Qdrant Storage Instance**
After adding the data, set the qdrant storage instance:
```python
from camel.storages import QdrantStorage, VectorDBQuery, VectorRecord
from camel.types import VectorDistance
qdrant_storage = QdrantStorage(
url_and_api_key=(
QDRANT_CLOUD_URL,
QDRANT_CLOUD_API_KEY,
),
collection_name=collection_name,
distance=VectorDistance.COSINE,
vector_dim=1536,
)
```
---
## **Step 9: Create a CAMEL-AI compatible OpenAI instance**
Define the OpenAI model and create a CAMEL-AI compatible OpenAI instance
```python
from camel.configs import ChatGPTConfig
from camel.models import ModelFactory
from camel.types import ModelPlatformType, ModelType
# Create a ChatGPT configuration
config = ChatGPTConfig(temperature=0.2).as_dict()
# Create an OpenAI model using the configuration
openai_model = ModelFactory.create(
model_platform=ModelPlatformType.OPENAI,
model_type=ModelType.GPT_4O_MINI,
model_config_dict=config,
)
# Use the created model
model = openai_model
```
## **Step 10: Define the AutoRetriever**
Next, define the AutoRetriever:
```python
from camel.retrievers import AutoRetriever
from camel.types import StorageType
from camel.agents import ChatAgent
assistant_sys_msg = """You are a helpful assistant to answer question,
I will give you the Original Query and Retrieved Context,
answer the Original Query based on the Retrieved Context,
if you can't answer the question just say I don't know."""
auto_retriever = AutoRetriever(
url_and_api_key=(
QDRANT_CLOUD_URL,
QDRANT_CLOUD_API_KEY,
),
storage_type=StorageType.QDRANT,
embedding_model=openai_embedding
)
qdrant_agent = ChatAgent(system_message=assistant_sys_msg, model=model)
```
---
## **Step 11: Create and Configure the Discord Bot**
Now let's bring the bot to life! It will serve as the interface through which users can interact with the agentic RAG system you’ve built.
### Create a New Discord Bot
1. Go to the [Discord Developer Portal](https://discord.com/developers/applications) and log in with your Discord account.
2. Click on the **New Application** button.
3. Give your application a name and click **Create**.
4. Navigate to the **Bot** tab on the left sidebar and click **Add Bot**.
5. Once the bot is created, click **Reset Token** under the **Token** section to generate a new bot token. Copy this token securely as you will need it later.
### Invite the Bot to Your Server
1. Go to the **OAuth2** tab and then to the **URL Generator** section.
2. Under **Scopes**, select **bot**.
3. Under **Bot Permissions**, select the necessary permissions:
- Send Messages
- Read Message History
4. Copy the generated URL and paste it into your browser.
5. Select the server where you want to invite the bot and click **Authorize**.
### Grant the Bot Permissions
1. Go back to the **Bot** tab.
2. Enable the following under **Privileged Gateway Intents**:
- Server Members Intent
- Message Content Intent
Now, the bot is ready to be integrated with your code.
Add to your `.env` file:
```bash
DISCORD_BOT_TOKEN=<your-discord-bot-token>
```
## **Step 12: Build the Discord Bot**
We'll use `discord.py` to create a simple Discord bot that interacts with users and retrieves context from Qdrant before responding.
```python
from camel.bots import DiscordApp
import nest_asyncio
import discord
nest_asyncio.apply()
discord_q_bot = DiscordApp(token=os.getenv("DISCORD_BOT_TOKEN"))
@discord_q_bot.client.event # triggers when a message is sent in the channel
async def on_message(message: discord.Message):
if message.author == discord_q_bot.client.user:
return
if message.type != discord.MessageType.default:
return
if message.author.bot:
return
user_input = message.content
query_results = qdrant_storage.query(VectorDBQuery(query_vector=openai_client.embeddings.create(
input=user_input, # Using user input as query
model=embedding_model,
).data[0].embedding,
top_k=5))
user_msg = str(query_results)
assistant_response = qdrant_agent.step(user_msg)
response_content = assistant_response.msgs[0].content
if len(response_content) > 2000: # discord message length limit
for chunk in [response_content[i:i+2000] for i in range(0, len(response_content), 2000)]:
await message.channel.send(chunk)
else:
await message.channel.send(response_content)
discord_q_bot.run()
```
---
## **Step 13: Test the Bot**
1. Invite your bot to your Discord server using the OAuth2 URL from the Discord Developer Portal.
2. Run the notebook.
3. Start chatting with the bot in your Discord server. It will retrieve context from Qdrant and provide relevant answers based on your queries.
![agentic-rag-discord-bot-what-is-quantization](/documentation/examples/agentic-rag-camelai/example.png)
---
## Conclusion
Congratulations, you've built an advanced **agentic RAG-powered Discord chatbot** capable of delivering intelligent, contextually aware responses in real time. This project seamlessly integrates multiple modern AI components to create a scalable and dynamic solution. Let’s reflect on what you’ve accomplished:
1. **Collection-Level Knowledge Retrieval**: The key achievement in this project is enabling retrieval across entire collections using Qdrant’s vector search capabilities. This allows the chatbot to retrieve the most relevant chunks of information from large datasets, ensuring precise and context-rich responses.
2. **High-Quality Embeddings with OpenAI**: Using OpenAI’s powerful embedding model, you transformed textual data into high-dimensional vectors that the bot can query efficiently.
3. **Autonomous Interaction with CAMEL-AI**: Through CAMEL-AI’s agent-driven framework, the chatbot employs advanced multi-step reasoning to generate insightful responses.
4. **Live Deployment on Discord**: You deployed a fully functional chatbot on Discord, making it interactive and accessible to real-world users.
With the ability to perform efficient retrieval across large collections, you’re now well-equipped to tackle more complex real-world problems that require scalable, autonomous knowledge systems.