From f6ed22561a079ef5314cb149eeabc6cdb0c05039 Mon Sep 17 00:00:00 2001 From: Derek Alia Date: Mon, 6 Jan 2025 16:16:58 -0800 Subject: [PATCH] Update rag.md with missing verb MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Missing verb in “The agent can the generated snippets ...” Original: “The agent can the generated snippets and re-retrieve if needed, as in Self-Query.” Fix: “The agent can use the generated snippets and re-retrieve if needed, as in Self-Query.” --- docs/source/en/examples/rag.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/examples/rag.md b/docs/source/en/examples/rag.md index ca35502..acbdf14 100644 --- a/docs/source/en/examples/rag.md +++ b/docs/source/en/examples/rag.md @@ -29,7 +29,7 @@ This agent will: ✅ Formulate the query itself and ✅ Critique to re-retrieve So it should naively recover some advanced RAG techniques! - Instead of directly using the user query as the reference in semantic search, the agent formulates itself a reference sentence that can be closer to the targeted documents, as in [HyDE](https://huggingface.co/papers/2212.10496). -The agent can the generated snippets and re-retrieve if needed, as in [Self-Query](https://docs.llamaindex.ai/en/stable/examples/evaluation/RetryQuery/). +The agent can use the generated snippets and re-retrieve if needed, as in [Self-Query](https://docs.llamaindex.ai/en/stable/examples/evaluation/RetryQuery/). Let's build this system. 🛠️