From 4e5d78579b83f838a7eabeb741e839190a128e4a Mon Sep 17 00:00:00 2001 From: ChrisLovejoy <35599865+chris-lovejoy@users.noreply.github.com> Date: Fri, 23 Jun 2023 22:57:37 +0100 Subject: [PATCH] fix minor typo in vector_db_qa.mdx (#6604) - Description: minor typo fixed - doesn't instead of does. No other changes. --- docs/snippets/modules/chains/popular/vector_db_qa.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/snippets/modules/chains/popular/vector_db_qa.mdx b/docs/snippets/modules/chains/popular/vector_db_qa.mdx index e19eb5a4dc0..719c30eeb0e 100644 --- a/docs/snippets/modules/chains/popular/vector_db_qa.mdx +++ b/docs/snippets/modules/chains/popular/vector_db_qa.mdx @@ -58,7 +58,7 @@ qa.run(query) -The above way allows you to really simply change the chain_type, but it does provide a ton of flexibility over parameters to that chain type. If you want to control those parameters, you can load the chain directly (as you did in [this notebook](/docs/modules/chains/additional/question_answering.html)) and then pass that directly to the the RetrievalQA chain with the `combine_documents_chain` parameter. For example: +The above way allows you to really simply change the chain_type, but it doesn't provide a ton of flexibility over parameters to that chain type. If you want to control those parameters, you can load the chain directly (as you did in [this notebook](/docs/modules/chains/additional/question_answering.html)) and then pass that directly to the the RetrievalQA chain with the `combine_documents_chain` parameter. For example: ```python