JP-RAG is a Retrieval-Augmented Generation (RAG) project designed to interact with and provide insights from the books 12 Rules for Life and Beyond Order: 12 More Rules by Jordan Peterson. This system uses modern AI techniques to retrieve relevant content from the books and generate meaningful, context-aware responses to user queries.
Precision@10: 70%
Q50: 34.1687 seconds
Q90: 37.8529 seconds
Q99: 37.9644 seconds
- Conversational AI: A chat-like interface for seamless user interaction.
- Efficient Retrieval: Uses semantic search to retrieve relevant content from the books based on user queries.
- Contextual Generation: Leverages a language model to generate insightful answers based on retrieved content.
- Interactive UI: A React-based frontend for intuitive and engaging user experiences.
- Keyboard Support: Supports both "Send" button and Enter key for submitting questions.
-
Data Preparation:
- Books were chunked into smaller, meaningful sections (each rule was treated as a content chunk).
- These chunks were embedded using HuggingFace embeddings for semantic search.
-
RAG Workflow:
- Retriever: Searches for the most relevant chunks from the vector store based on user input.
- Generator: Generates a detailed and contextual response using a language model (LLM).
-
Frontend:
- Built with React to provide a dynamic chat interface.
- Displays conversation history and allows users to toggle between various views (Chat, Help, Activity, Settings).
-
Backend:
- Developed using FastAPI, providing endpoints for handling queries.
- Manages the RAG pipeline and communicates with the React frontend.
- FastAPI: Lightweight Python framework for building APIs.
- Chroma/FAISS: Vector store for efficient semantic search.
- HuggingFace Transformers: For generating embeddings and leveraging pre-trained models.
- Sentence-Transformers: Used for embedding text chunks.
- React: JavaScript library for building the user interface.
- Axios: For making API calls to the backend.
- HuggingFace API: Used for text generation in the RAG pipeline.
- Python: Primary language for backend development.
- Markdown: For documentation.
git clone https://github.com/your-username/jp-rag.git
cd jp-rag
cd backend
python -m venv env
source env/bin/activate # On Windows: env\Scripts\activate
pip install -r requirements.txt
uvicorn app.main:app --reload
cd frontend
npm install
npm start
- The retriever searches for the most relevant content from the vector store using semantic embeddings.
- Embeddings are generated using the "all-MiniLM-L6-v2" model from HuggingFace.
- The generator utilizes an LLM "meta-llama/Llama-3.2-3B-Instruct" via HuggingFace API to generate contextually relevant responses.
- Provides a chat interface for interacting with the RAG system.
- Supports toggling between different views:
- Chat: Main interface for querying the RAG system.
- Help: Offers guidance for using the system.
- Activity: Displays recent interactions.
- Settings: Customizable options for the user.
jp-rag/
├── backend/
│ ├── app/
│ │ ├── main.py # FastAPI entry point
│ │ ├── models.py # Pydantic models for query/request
│ │ ├── rag_pipeline.py # RAG pipeline logic
│ │ ├── vectorstore.py # Vector store setup and retrieval
│ │ └── utils.py # Helper functions
│ ├── data/ # Prepared book data in JSON format
│ ├── embeddings/ # Embeddings and vector store files
│ └── requirements.txt # Python dependencies
├── frontend/
│ ├── src/
│ │ ├── components/
│ │ │ ├── Sidebar/ # Sidebar component
│ │ │ ├── Main/ # Main chat interface
│ │ │ └── App.js # Root React component
│ ├── public/ # Static files
│ └── package.json # Frontend dependencies
├── README.md # Documentation
└── LICENSE # License file
- Slow Response Time: Initially, responses were delayed due to the gradual typing effect. Resolved by optimizing the display logic to show the full response immediately while retaining typing effects.
- Chunking the Books: Balancing chunk size for efficient retrieval without losing context was a challenge.
- Frontend-Backend Communication: Ensured seamless integration between React and FastAPI using Axios.
Here is a list of 50 meaningful questions derived from Beyond the Order: 12 More Rules for Life by Jordan Peterson. These questions cover key themes, ideas, and discussions from the book. You can use them as a golden set to test your Retrieval-Augmented Generation (RAG) system.
- Why does Jordan Peterson emphasize the importance of preserving social institutions?
- How does Peterson explain the balance between order and chaos in society?
- What is the significance of respecting creative achievement in the modern world?
- How does Peterson relate social institutions to personal stability?
- Why does Peterson warn against carelessly criticizing systems we do not fully understand?
- What does it mean to "imagine who you could be"?
- How can focusing on a clear goal improve one's life trajectory?
- What role does self-improvement play in this rule?
- How does Peterson explain the importance of single-minded focus on personal growth?
- What advice does Peterson give for overcoming obstacles while pursuing an ideal?
- What does "the fog" represent in this rule?
- Why is it important to confront and address hidden truths in our lives?
- How does avoiding clarity lead to unnecessary suffering?
- What strategies does Peterson suggest for facing the "fog" in one's life?
- How can this rule be applied in personal relationships?
- How can identifying abdicated responsibilities lead to personal growth?
- Why does Peterson believe that opportunities often lie in places others avoid?
- How does taking responsibility for neglected areas create meaning in life?
- What role does responsibility play in developing character?
- How can this rule be applied in professional settings?
- How does Peterson define actions that we "hate" doing?
- Why is it important to align one's actions with personal values?
- What are the consequences of consistently engaging in activities we despise?
- How can someone recognize when they are doing something they hate?
- How does this rule relate to integrity and authenticity?
- How does Peterson define "ideology" in this rule?
- Why does Peterson caution against ideological thinking?
- What are the dangers of simplifying complex realities through ideologies?
- How can someone recognize when they are adopting an ideological perspective?
- What is the alternative to ideology according to Peterson?
- How does hard work on a meaningful task transform one's life?
- Why does Peterson emphasize working on "at least one thing"?
- How does mastery in a specific area impact other aspects of life?
- What advice does Peterson give for maintaining discipline in work?
- How does this rule relate to personal fulfillment?
- Why does Peterson emphasize creating beauty in one's home environment?
- How does this rule help bring order to chaos in everyday life?
- What is the relationship between physical surroundings and mental well-being?
- How can this rule serve as a metaphor for improving one's life?
- What practical steps does Peterson suggest for beautifying a space?
- How does writing about painful memories help resolve lingering emotions?
- What therapeutic benefits does Peterson attribute to journaling about the past?
- Why is it important to carefully articulate old memories instead of ignoring them?
- How can confronting past traumas lead to personal growth?
- What role does storytelling play in processing emotional pain?
- Why is maintaining romance important for long-term relationships?
- What practical advice does Peterson give for keeping romance alive?
- How can planning and effort strengthen emotional bonds between partners?
- What are the consequences of neglecting romance in a relationship?
- How does this rule apply to modern challenges in relationships?
- Golden Set Testing: Use these questions to evaluate the accuracy and contextual understanding of your RAG system.
- Diversity of Themes: The questions cover a variety of topics like personal growth, relationships, responsibility, and societal insights, which will comprehensively test your system's retrieval and generation capabilities.
- Performance Measurement: Assess how well your RAG system retrieves relevant content and generates meaningful, accurate responses.