mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-19 13:23:35 +00:00
Fix documentation error langchain explanation of combine_docs.md (#404)
This PR is regarding the issue here - https://github.com/hwchase17/langchain/issues/403
This commit is contained in:
parent
77e1743341
commit
ea3da9a469
@ -111,7 +111,7 @@ This method involves an initial prompt on the first chunk of data, generating so
|
||||
For the remaining documents, that output is passed in, along with the next document,
|
||||
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`.
|
||||
**Pros:** Can pull in more relevant context, and may be less lossy than `MapReduceDocumentsChain`.
|
||||
|
||||
**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.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user