From 1600768518c124c64a16fd9a8deee145eb9e179d Mon Sep 17 00:00:00 2001 From: Joseph Martinez <joseph.r.martinez@gmail.com> Date: Mon, 23 Oct 2023 23:32:12 -0700 Subject: [PATCH] Fix grammar error in concepts.md (#8270) Small plural error fix. --- docs/getting_started/concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started/concepts.md b/docs/getting_started/concepts.md index 1c9fd8d5bb..efbf158af7 100644 --- a/docs/getting_started/concepts.md +++ b/docs/getting_started/concepts.md @@ -40,7 +40,7 @@ Once you've ingested your data, LlamaIndex will help you index the data into a f ### Querying Stage In the querying stage, the RAG pipeline retrieves the most relevant context given a user query, -and pass that to the LLM (along with the query) to synthesize a response. +and passes that to the LLM (along with the query) to synthesize a response. This gives the LLM up-to-date knowledge that is not in its original training data, (also reducing hallucination). The key challenge in the querying stage is retrieval, orchestration, and reasoning over (potentially many) knowledge bases. -- GitLab