From c91cf687544da27ca296cf95949758b17132bca1 Mon Sep 17 00:00:00 2001 From: Davis Chase <130488702+dev2049@users.noreply.github.com> Date: Tue, 20 Jun 2023 14:44:22 -0700 Subject: [PATCH] Fix link (#6501) --- docs/extras/use_cases/question_answering/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extras/use_cases/question_answering/index.mdx b/docs/extras/use_cases/question_answering/index.mdx index 63e6648b..4b3baebc 100644 --- a/docs/extras/use_cases/question_answering/index.mdx +++ b/docs/extras/use_cases/question_answering/index.mdx @@ -75,7 +75,7 @@ chain({"input_documents": docs, "question": query}, return_only_outputs=True) Additional related resources include: - [Building blocks for working with Documents](/docs/modules/data_connection/): Guides on how to use several of the utilities which will prove helpful for this task, including Text Splitters (for splitting up long documents) and Embeddings & Vectorstores (useful for the above Vector DB example). -- [CombineDocuments Chains](/docs/modules/chains/documents/): A conceptual overview of specific types of chains by which you can accomplish this task. +- [CombineDocuments Chains](/docs/modules/chains/document/): A conceptual overview of specific types of chains by which you can accomplish this task. ## End-to-end examples