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