load_summarize_chain#
- langchain_cohere.chains.summarize.summarize_chain.load_summarize_chain(llm: BaseLanguageModel, chain_type: str = 'stuff', **kwargs: Any) RunnableSerializable [source]#
测试版
- Makes use of Cohere’s grounded RAG summarization,
这可能会在以后的langchain-cohere版本中更改
加载摘要链。
- Parameters:
llm (BaseLanguageModel) – 在链中使用的语言模型。
chain_type (str) – 使用的文档组合链类型。目前,此实现中仅支持“stuff”。
verbose – 是否应以详细模式运行链。请注意,这适用于构成最终链的所有链。
kwargs (Any)
- Returns:
用于总结的链。
- Return type:
使用 load_summarize_chain 的示例