Skip to content

Latest commit

Β 

History

History
93 lines (64 loc) Β· 3.21 KB

File metadata and controls

93 lines (64 loc) Β· 3.21 KB

RAGmap πŸ—ΊοΈπŸ”

Overview

RAGmap is a simple RAG visualization tool for exploring document chunks and queries in embedding space.

Inspired by DeepLearning.ai's short course on Advanced Retrieval for AI with Chroma and Gabriel Chua's award-winning RAGxplorer.

What's inside?

RAGmap supports the following features:

How to use

Prerequisites

Enable access to the embedding (Titan Embeddings, Cohere Embed) and text (Anthropic Claude) models via Amazon Bedrock.

For more information on how to request model access, please refer to the Amazon Bedrock User Guide (Set up > Model access)

Option 1 πŸ’»

  1. Install dependencies

    pip install -r requirements.txt
  2. Run the application

    # ChromaDB
    streamlit run app.py
    
    # LanceDB
    streamlit run app_lancedb.py
    
    # 5-day GenAI Edition (NEW!) πŸ§ͺ
    streamlit run app_5dgai.py
  3. Point your browser to http://localhost:8501

Option 2 🐳

  1. Run the following command to start the application

    docker-compose up
  2. Once the service is up and running, head over to http://localhost:8501

References