Skip to content

Commit

Permalink
Fix typos in conversational-search.md (opensearch-project#5152)
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Vossen <61426691+upwards-gravity@users.noreply.github.com>
  • Loading branch information
upwards-gravity committed Oct 4, 2023
1 parent e764c9f commit 8413597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _ml-commons-plugin/conversational-search.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,13 +353,13 @@ GET /<index_name>/_search?search_pipeline=<pipeline_name>
}
```

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.

Expand Down

0 comments on commit 8413597

Please sign in to comment.