📝 docs(chains.py): update description of CombineDocsChainNode

The description of CombineDocsChainNode was updated to reflect the actual functionality of the node. The node is now used to load a question answering chain instead of constructing a chain from combined documents.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-15 11:40:29 -03:00
commit 5ce9fa17cf

View file

@ -197,7 +197,7 @@ class CombineDocsChainNode(FrontendNode):
),
],
)
description: str = """Construct a chain from combined documents."""
description: str = """Load question answering chain."""
base_classes: list[str] = ["BaseCombineDocumentsChain", "function"]
def to_dict(self):