From 88ef448d1a8959cce345807dec6663b92bc7d144 Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 27 Mar 2026 02:31:40 +0800 Subject: [PATCH] Add agentic vectorless RAG example to README highlights --- README.md | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 9de5375..2166ae6 100644 --- a/README.md +++ b/README.md @@ -28,20 +28,16 @@
-

๐Ÿ“ข Latest Updates

+

๐Ÿ”ฅ Updates

- **๐Ÿ”ฅ Releases:** -- [**PageIndex Chat**](https://chat.pageindex.ai): The first human-like document-analysis agent [platform](https://chat.pageindex.ai) built for professional long documents. Can also be integrated via [MCP](https://pageindex.ai/mcp) or [API](https://docs.pageindex.ai/quickstart) (beta). - - - - **๐Ÿ“ Articles:** -- [**PageIndex Framework**](https://pageindex.ai/blog/pageindex-intro): Introduces the PageIndex framework โ€” an *agentic, in-context* *tree index* that enables LLMs to perform *reasoning-based*, *human-like retrieval* over long documents, without vector DB or chunking. - +- [**Agentic Vectorless RAG Example**](https://github.com/VectifyAI/PageIndex/blob/main/examples/openai_agents_demo.py): A complete *agentic, vectorless RAG* [example](https://github.com/VectifyAI/PageIndex/blob/main/examples/openai_agents_demo.py) with self-hosted PageIndex, using OpenAI Agents SDK. +- [PageIndex Chat](https://chat.pageindex.ai): Human-like document-analysis agent [platform](https://chat.pageindex.ai) for professional long documents. Also available via [MCP](https://pageindex.ai/mcp) or [API](https://docs.pageindex.ai/quickstart). +- [PageIndex Framework](https://pageindex.ai/blog/pageindex-intro): The PageIndex framework โ€” an *agentic, in-context tree index* that enables LLMs to perform *reasoning-based, human-like retrieval* over long documents. - **๐Ÿงช Cookbooks:** + +
--- @@ -85,10 +81,15 @@ The PageIndex service is available as a ChatGPT-style [chat platform](https://ch ### ๐Ÿงช Quick Hands-on -- Try the [**Vectorless RAG**](https://github.com/VectifyAI/PageIndex/blob/main/cookbook/pageindex_RAG_simple.ipynb) notebook โ€” a *minimal*, hands-on example of reasoning-based RAG using PageIndex. -- Experiment with [*Vision-based Vectorless RAG*](https://github.com/VectifyAI/PageIndex/blob/main/cookbook/vision_RAG_pageindex.ipynb) โ€” no OCR; a minimal, reasoning-native RAG pipeline that works directly over page images. +- ๐Ÿ”ฅ [**Agentic Vectorless RAG**](examples/openai_agents_demo.py) (**latest**) โ€” a complete **agentic vectorless RAG** [example](https://github.com/VectifyAI/PageIndex/blob/main/examples/openai_agents_demo.py) with *self-hosted* PageIndex, using OpenAI Agents SDK. +- Try the [Vectorless RAG](https://github.com/VectifyAI/PageIndex/blob/main/cookbook/pageindex_RAG_simple.ipynb) notebook โ€” a *minimal*, hands-on example of reasoning-based RAG using PageIndex. +- Check out [Vision-based Vectorless RAG](https://github.com/VectifyAI/PageIndex/blob/main/cookbook/vision_RAG_pageindex.ipynb) โ€” no OCR; a minimal, vision-based & reasoning-native RAG pipeline that works directly over page images.
+ + View on GitHub: Agentic Vectorless RAG + +
Open in Colab: Vectorless RAG @@ -194,7 +195,7 @@ python3 run_pageindex.py --md_path /path/to/your/document.md ### A Complete Agentic RAG Example -For a complete example on **agentic RAG with PageIndex** (using [OpenAI Agents SDK](https://github.com/openai/openai-agents-python)), see [`examples/openai_agents_demo.py`](examples/openai_agents_demo.py). +For a complete example on building document QA agents via **agentic vectorless RAG** using PageIndex (with [OpenAI Agents SDK](https://github.com/openai/openai-agents-python)), see [`examples/openai_agents_demo.py`](examples/openai_agents_demo.py). ```bash # Install optional dependency @@ -204,8 +205,6 @@ pip3 install openai-agents python3 examples/openai_agents_demo.py ``` ---- -