mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
9 lines
276 B
Plaintext
9 lines
276 B
Plaintext
|
```python
|
||
|
class BaseCombineDocumentsChain(Chain, ABC):
|
||
|
"""Base interface for chains combining documents."""
|
||
|
|
||
|
@abstractmethod
|
||
|
def combine_docs(self, docs: List[Document], **kwargs: Any) -> Tuple[str, dict]:
|
||
|
"""Combine documents into a single string."""
|
||
|
|
||
|
```
|