From 7c4fe58f5548cc8280fa220cec4adf03b0d55be2 Mon Sep 17 00:00:00 2001 From: Matthew Kwiatkowski Date: Thu, 4 Jan 2024 23:57:21 -0600 Subject: [PATCH] Docs: Fix typos in question_answering (#15565) **Description**: Fixed a minor typo in the RAG Docs: - ~~This usually happen offline~~ -> This usually happen**s** offline --- docs/docs/use_cases/question_answering/index.ipynb | 2 +- docs/docs/use_cases/question_answering/quickstart.ipynb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/use_cases/question_answering/index.ipynb b/docs/docs/use_cases/question_answering/index.ipynb index 5bfbbd73e6e..4ee06372b34 100644 --- a/docs/docs/use_cases/question_answering/index.ipynb +++ b/docs/docs/use_cases/question_answering/index.ipynb @@ -50,7 +50,7 @@ "## RAG Architecture\n", "A typical RAG application has two main components:\n", "\n", - "**Indexing**: a pipeline for ingesting data from a source and indexing it. *This usually happen offline.*\n", + "**Indexing**: a pipeline for ingesting data from a source and indexing it. *This usually happens offline.*\n", "\n", "**Retrieval and generation**: the actual RAG chain, which takes the user query at run time and retrieves the relevant data from the index, then passes that to the model.\n", "\n", diff --git a/docs/docs/use_cases/question_answering/quickstart.ipynb b/docs/docs/use_cases/question_answering/quickstart.ipynb index 36f36f69660..5dfbca08d96 100644 --- a/docs/docs/use_cases/question_answering/quickstart.ipynb +++ b/docs/docs/use_cases/question_answering/quickstart.ipynb @@ -42,7 +42,7 @@ "## Architecture\n", "We'll create a typical RAG application as outlined in the [Q&A introduction](/docs/use_cases/question_answering/), which has two main components:\n", "\n", - "**Indexing**: a pipeline for ingesting data from a source and indexing it. *This usually happen offline.*\n", + "**Indexing**: a pipeline for ingesting data from a source and indexing it. *This usually happens offline.*\n", "\n", "**Retrieval and generation**: the actual RAG chain, which takes the user query at run time and retrieves the relevant data from the index, then passes that to the model.\n", "\n",