From dc3f7a0824af611ec57e5c2828bde5c8b535131e Mon Sep 17 00:00:00 2001 From: Ray Date: Sat, 30 Aug 2025 13:04:03 +0800 Subject: [PATCH] fix notebook --- cookbook/pageindex_RAG_simple.ipynb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cookbook/pageindex_RAG_simple.ipynb b/cookbook/pageindex_RAG_simple.ipynb index 72e4b45..c24f6e8 100644 --- a/cookbook/pageindex_RAG_simple.ipynb +++ b/cookbook/pageindex_RAG_simple.ipynb @@ -70,11 +70,13 @@ "source": [ "## 📝 Notebook Overview\n", "\n", - "This notebook demonstrates a **simple**, **minimal** example of **vectorless RAG** with PageIndex. You will learn how to:\n", + "This notebook demonstrates a simple, minimal example of **vectorless RAG** with PageIndex. You will learn how to:\n", "- [x] Build a PageIndex tree structure of a document\n", "- [x] Perform reasoning-based retrieval with tree search\n", "- [x] Generate answers based on the retrieved context\n", "\n", + "> ⚡ Note: This is a **minimal example** to illustrate PageIndex's core philosophy and idea, not its full capabilities. More advanced examples are coming soon.\n", + "\n", "---" ] }, @@ -551,7 +553,7 @@ "\n", "## 🎯 What's Next\n", "\n", - "This notebook has demonstrated a basic, **minimal** example of **reasoning-based**, **vectorless** RAG with PageIndex. The workflow illustrates the core idea:\n", + "This notebook has demonstrated a **basic**, **minimal** example of **reasoning-based**, **vectorless** RAG with PageIndex. The workflow illustrates the core idea:\n", "> *Generating a hierarchical tree structure from a document, reasoning over that tree structure, and extracting relevant context, without relying on a vector database or top-k similarity search*.\n", "\n", "While this notebook highlights a minimal workflow, the PageIndex framework is built to support **far more advanced** use cases. In upcoming tutorials, we will introduce:\n",