Python RAG Agent
Complete RAG agent implementation with document loading and processing
Retrieval-Augmented Generation (RAG) is a powerful paradigm that enhances large language models by providing them with relevant information from external knowledge sources. This approach has become essential for enterprise AI applications that need to work with specific, up-to-date, or domain-specific information that wasn’t part of the model’s training data.
RAG addresses key limitations of traditional LLMs:
Enterprises rely on RAG for applications like customer support, document analysis, knowledge management, and intelligent search systems.
BeeAI Framework’s approach to RAG emphasizes integration over invention. Rather than building RAG components from scratch, we provide seamless adapters for proven, production-ready solutions from leading platforms like LangChain and Llama-Index.
This philosophy offers several advantages:
To use RAG components, install the framework with the RAG extras:
pip install "beeai-framework[rag]"The following table outlines the key RAG components available in the BeeAI Framework:
| Component | Description | Compatibility | Future Compatibility |
|---|---|---|---|
| Document Loaders | Responsible for loading content from different formats and sources such as PDFs, web pages, and structured text files | LangChain | BeeAI |
| Text Splitters | Splits long documents into workable chunks using various strategies, e.g. fixed length or preserving context | LangChain | BeeAI |
| Document | The basic data structure to house text content, metadata, and relevant scores for retrieval operations | BeeAI | - |
| Vector Store | Used to store document embeddings and retrieve them based on semantic similarity using embedding distance | LangChain | BeeAI, Llama-Index |
| Document Processors | Used to process and refine documents during the retrieval-generation lifecycle including reranking and filtering | Llama-Index | - |
BeeAI Framework provides a dynamic module loading system that allows you to instantiate RAG components using string identifiers. This approach enables configuration-driven architectures and easy provider switching.
The from_name method uses the format provider:ClassName where:
provider identifies the integration module (e.g., “beeai”, “langchain”)ClassName specifies the exact class to instantiateimport asyncioimport sysimport traceback
from beeai_framework.adapters.beeai.backend.vector_store import TemporalVectorStorefrom beeai_framework.adapters.langchain.mappers.documents import lc_document_to_documentfrom beeai_framework.backend.embedding import EmbeddingModelfrom beeai_framework.backend.vector_store import VectorStorefrom beeai_framework.errors import FrameworkError
# LC dependencies - to be swapped with BAI dependenciestry: from langchain_community.document_loaders import UnstructuredMarkdownLoader from langchain_text_splitters import RecursiveCharacterTextSplitterexcept ModuleNotFoundError as e: raise ModuleNotFoundError( "Optional modules are not found.\nRun 'pip install \"beeai-framework[rag]\"' to install." ) from e
async def main() -> None: embedding_model = EmbeddingModel.from_name("watsonx:ibm/slate-125m-english-rtrvr-v2", truncate_input_tokens=500)
# Document loading loader = UnstructuredMarkdownLoader(file_path="docs/modules/agents.mdx") docs = loader.load() text_splitter = RecursiveCharacterTextSplitter(chunk_size=2000, chunk_overlap=1000) all_splits = text_splitter.split_documents(docs) documents = [lc_document_to_document(document) for document in all_splits] print(f"Loaded {len(documents)} documents")
# pyrefly: ignore [bad-assignment] vector_store: TemporalVectorStore = VectorStore.from_name( name="beeai:TemporalVectorStore", embedding_model=embedding_model ) # type: ignore[assignment] _ = await vector_store.add_documents(documents=documents)
if __name__ == "__main__": try: asyncio.run(main()) except FrameworkError as e: traceback.print_exc() sys.exit(e.explain())The RAG Agent implements a sophisticated retrieval-augmented generation pipeline that combines the power of semantic search with large language models. The agent follows a three-stage process and supports advanced configuration options including custom reranking, flexible retrieval parameters, comprehensive error handling, and query flexibility using various object types.
The agent searches the vector store using semantic similarity to find the most relevant documents for the user’s query. You can configure the number of documents retrieved and similarity thresholds to optimize for your specific use case.
Retrieved documents can be reranked using advanced LLM-based models to improve relevance and quality of the context provided to the generation stage. This step significantly enhances response accuracy for complex queries.
The LLM generates a response using the retrieved documents as context, ensuring grounded and accurate answers. Built-in error handling ensures informative error messages are stored in memory when issues occur.
# LangChain integrationvector_store = VectorStore.from_name( name="langchain:InMemoryVectorStore", embedding_model=embedding_model)import asyncioimport loggingimport osimport sysimport traceback
from dotenv import load_dotenv
from beeai_framework.adapters.beeai.backend.vector_store import TemporalVectorStorefrom beeai_framework.adapters.langchain.backend.vector_store import LangChainVectorStorefrom beeai_framework.agents.experimental.rag import RAGAgentfrom beeai_framework.backend.chat import ChatModelfrom beeai_framework.backend.document_loader import DocumentLoaderfrom beeai_framework.backend.document_processor import DocumentProcessorfrom beeai_framework.backend.embedding import EmbeddingModelfrom beeai_framework.backend.text_splitter import TextSplitterfrom beeai_framework.backend.vector_store import VectorStorefrom beeai_framework.errors import FrameworkErrorfrom beeai_framework.logger import Loggerfrom beeai_framework.memory import UnconstrainedMemory
load_dotenv() # load environment variableslogger = Logger("rag-agent", level=logging.DEBUG)
POPULATE_VECTOR_DB = TrueVECTOR_DB_PATH_4_DUMP = "" # Set this path for persistencyINPUT_DOCUMENTS_LOCATION = "docs/integrations"
async def populate_documents() -> VectorStore | None: embedding_model = EmbeddingModel.from_name("watsonx:ibm/slate-125m-english-rtrvr-v2", truncate_input_tokens=500)
# Load existing vector store if available # pyrefly: ignore [redundant-condition] if VECTOR_DB_PATH_4_DUMP and os.path.exists(VECTOR_DB_PATH_4_DUMP): print(f"Loading vector store from: {VECTOR_DB_PATH_4_DUMP}") preloaded_vector_store: VectorStore = TemporalVectorStore.load( path=VECTOR_DB_PATH_4_DUMP, embedding_model=embedding_model ) return preloaded_vector_store
# Create new vector store if population is enabled if POPULATE_VECTOR_DB: loader = DocumentLoader.from_name( name="langchain:UnstructuredMarkdownLoader", file_path="docs/modules/agents.mdx" ) try: documents = await loader.load() except Exception: return None
# Use abstracted text splitter text_splitter = TextSplitter.from_name( name="langchain:RecursiveCharacterTextSplitter", chunk_size=2000, chunk_overlap=1000 ) documents = await text_splitter.split_documents(documents) print(f"Loaded {len(documents)} documents")
print("Rebuilding vector store") # Adapter example # pyrefly: ignore [bad-assignment] vector_store: TemporalVectorStore = VectorStore.from_name( name="beeai:TemporalVectorStore", embedding_model=embedding_model ) # type: ignore[assignment] # Native examples # vector_store: TemporalVectorStore = TemporalVectorStore(embedding_model=embedding_model) # vector_store = InMemoryVectorStore(embedding_model) _ = await vector_store.add_documents(documents=documents) # pyrefly: ignore [redundant-condition] if VECTOR_DB_PATH_4_DUMP and isinstance(vector_store, LangChainVectorStore): print(f"Dumping vector store to: {VECTOR_DB_PATH_4_DUMP}") # pyrefly: ignore [missing-attribute] vector_store.vector_store.dump(VECTOR_DB_PATH_4_DUMP) return vector_store
# Neither existing DB found nor population enabled return None
async def main() -> None: vector_store = await populate_documents() if vector_store is None: raise FileNotFoundError( f"Vector database not found at {VECTOR_DB_PATH_4_DUMP}. " "Either set POPULATE_VECTOR_DB=True to create a new one, or ensure the database file exists." )
llm = ChatModel.from_name("ollama:llama3.2") reranker = DocumentProcessor.from_name("beeai:LLMDocumentReranker", llm=llm)
agent = RAGAgent(llm=llm, memory=UnconstrainedMemory(), vector_store=vector_store, reranker=reranker)
response = await agent.run("What agents are available in BeeAI?") print(response.last_message.text)
if __name__ == "__main__": try: asyncio.run(main()) except FrameworkError as e: traceback.print_exc() sys.exit(e.explain())Vector store population (loading and chunking documents) is typically handled offline in production applications, making Vector Store the prominent RAG building block utilized as a tool.
VectorStoreSearchTool enables any agent to perform semantic search against a pre-populated vector store. This provides flexibility for agents that need retrieval capabilities alongside other functionalities.