fix notebook

This commit is contained in:
Ray 2025-08-30 13:04:03 +08:00
parent d0fccd82a2
commit dc3f7a0824

View file

@ -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",