From 27d115bacfae945de9427aa9aa234af49971527b Mon Sep 17 00:00:00 2001 From: fm1320 Date: Sun, 29 Dec 2024 23:47:00 +0000 Subject: [PATCH] better explanations in tutorial --- docs/source/tutorials/rag_with_memory.rst | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/docs/source/tutorials/rag_with_memory.rst b/docs/source/tutorials/rag_with_memory.rst index f1bfb822..6739898f 100644 --- a/docs/source/tutorials/rag_with_memory.rst +++ b/docs/source/tutorials/rag_with_memory.rst @@ -95,14 +95,17 @@ Quick Start Example Usage ----------- -Here are some example queries you can try: - -.. code-block:: text - - "What does the RAG class do?" - "Can you explain how the memory system works?" - "Show me the implementation of text splitting" - "How is the conversation context maintained?" +1. **Demo Version (app.py)** + - Ask about Alice (software engineer) + - Ask about Bob (data scientist) + - Ask about the company cafeteria + - Test memory with follow-up questions + +2. **Repository Analysis (app_repo.py)** + - Enter your repository path + - Click "Load Repository" + - Ask questions about classes, functions, or code structure + - View implementation details in expandable sections Implementation Details -------------------