Skip to content

Latest commit

 

History

History
 
 

multimodal-rag

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Creating Multimodal AI Agent for Enhanced Content Understanding

Overview

This Streamlit application implements a Multimodal Retrieval-Augmented Generation (RAG) system. It processes various types of documents including text files, PDFs, PowerPoint presentations, and images. The app leverages Large Language Models and Vision Language Models to extract and index information from these documents, allowing users to query the processed data through an interactive chat interface.

The system utilizes LlamaIndex for efficient indexing and retrieval of information, NIM microservices for high-performance inference capabilities, and Milvus as a vector database for efficient storage and retrieval of embedding vectors. This combination of technologies enables the application to handle complex multimodal data, perform advanced queries, and deliver rapid, context-aware responses to user inquiries.

Features

  • Multi-format Document Processing: Handles text files, PDFs, PowerPoint presentations, and images.
  • Advanced Text Extraction: Extracts text from PDFs and PowerPoint slides, including tables and embedded images.
  • Image Analysis: Uses a VLM (NeVA) to describe images and Google's DePlot for processing graphs/charts on NIM microservices.
  • Vector Store Indexing: Creates a searchable index of processed documents using Milvus vector store.
  • Interactive Chat Interface: Allows users to query the processed information through a chat-like interface.

Setup

  1. Clone the repository:
git clone https://github.com/NVIDIA/GenerativeAIExamples.git
cd GenerativeAIExamples/community/multimodal_rag
  1. (Optional) Create a conda environment or a virtual environment:

    • Using conda:

      conda create --name multimodal-rag python=3.10
      conda activate multimodal-rag
      
    • Using venv:

      python -m venv venv
      source venv/bin/activate
      
      
  2. Install the required packages:

pip install -r requirements.txt
  1. Set up your NVIDIA API key as an environment variable:
export NVIDIA_API_KEY="your-api-key-here"
  1. Refer this tutorial to install and start the GPU-accelerated Milvus container:
sudo docker compose up -d

Usage

  1. Ensure the Milvus container is running:
docker ps
  1. Run the Streamlit app:
streamlit run app.py
  1. Open the provided URL in your web browser.

  2. Choose between uploading files or specifying a directory path containing your documents.

  3. Process the files by clicking the "Process Files" or "Process Directory" button.

  4. Once processing is complete, use the chat interface to query your documents.

File Structure

  • app.py: Main Streamlit application
  • utils.py: Utility functions for image processing and API interactions
  • document_processors.py: Functions for processing various document types
  • requirements.txt: List of Python dependencies
  • vectorstore/ : Repository to store information from pdfs and ppt

GPU Acceleration for Vector Search

To utilize GPU acceleration in the vector database, ensure that:

  1. Your system has a compatible NVIDIA GPU.
  2. You're using the GPU-enabled version of Milvus (as shown in the setup instructions).
  3. There are enough concurrent requests to justify GPU usage. GPU acceleration typically shows significant benefits under high load conditions.

It's important to note that GPU acceleration will only be used when the incoming requests are extremely high. For more detailed information on GPU indexing and search in Milvus, refer to the official Milvus GPU Index documentation.

To connect the GPU-accelerated Milvus with LlamaIndex, update the MilvusVectorStore configuration in app.py:

vector_store = MilvusVectorStore(
    host="127.0.0.1",
    port=19530,
    dim=1024,
    collection_name="your_collection_name",
    gpu_id=0  # Specify the GPU ID to use
)

Contributing

Contributions to this project are welcome! Please follow these steps:

  1. Fork the NVIDIA/GenerativeAIExamples repository.
  2. Create a new branch for your feature or bug fix.
  3. Make your changes in the community/multimodal_rag/ directory.
  4. Submit a pull request to the main repository.