From 841359706aa0d72e23af6315d3ee139b44494e8d Mon Sep 17 00:00:00 2001 From: Tim Vossen <61426691+upwards-gravity@users.noreply.github.com> Date: Wed, 4 Oct 2023 20:09:54 +0200 Subject: [PATCH] Fix typos in conversational-search.md (#5152) Signed-off-by: Tim Vossen <61426691+upwards-gravity@users.noreply.github.com> --- _ml-commons-plugin/conversational-search.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_ml-commons-plugin/conversational-search.md b/_ml-commons-plugin/conversational-search.md index 92a7f263..2ddaf027 100644 --- a/_ml-commons-plugin/conversational-search.md +++ b/_ml-commons-plugin/conversational-search.md @@ -353,13 +353,13 @@ GET //_search?search_pipeline= } ``` -The RAG search query uses the following request objects under the `generative_qa_paramters` option. +The RAG search query uses the following request objects under the `generative_qa_parameters` option. Parameter | Required | Description :--- | :--- | :--- `llm_question` | Yes | The question the LLM must answer. `llm_model` | No | Overrides the original model set in the connection in cases where you want to use a different model (for example, GPT 4 instead of GPT 3.5). This option is required if a default model is not set during pipeline creation. -`coversation_id` | No | Integrates conversation memory into your RAG pipeline by adding the 10 most recent conversations into the context of the search query to the LLM. +`conversation_id` | No | Integrates conversation memory into your RAG pipeline by adding the 10 most recent conversations into the context of the search query to the LLM. If your LLM includes a set token limit, set the `size` field in your OpenSearch query to limit the number of documents used in the search response. Otherwise, the RAG pipeline will send every document in the search results to the LLM.