From 2eef76ed3fcc20df66f060e74589f84cb6b62bf6 Mon Sep 17 00:00:00 2001 From: Harrison Chase Date: Fri, 16 Dec 2022 16:48:54 -0800 Subject: [PATCH] fix documentation (#365) --- docs/explanation/combine_docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/explanation/combine_docs.md b/docs/explanation/combine_docs.md index 81a0d13d..2f86ad95 100644 --- a/docs/explanation/combine_docs.md +++ b/docs/explanation/combine_docs.md @@ -113,7 +113,7 @@ asking the LLM to refine the output based on the new document. **Pros:** Can pull in more relevant context, and may be less lossy than `RefineDocumentsChain`. -**Cons:** Requires many more calls to the LLM than `StuffDocumentsChain`. The calls are also NOT independent, meaning they cannot be paralleled like `RefineDocumentsChain`. There is also some potential dependencies on the ordering of the documents. +**Cons:** Requires many more calls to the LLM than `StuffDocumentsChain`. The calls are also NOT independent, meaning they cannot be paralleled like `MapReduceDocumentsChain`. There is also some potential dependencies on the ordering of the documents. ## Use Cases LangChain supports the above three methods of augmenting LLMs with external data.