Summarization
Summarization involves creating a smaller summary of multiple longer documents. This can be useful for distilling long documents into the core pieces of information.
The recommended way to get started using a summarization chain is:
from langchain.chains.summarize import load_summarize_chain
chain = load_summarize_chain(llm, chain_type="map_reduce")
chain.run(docs)
API Reference:
- load_summarize_chain from
langchain.chains.summarize
The following resources exist:
- Summarization notebook: A notebook walking through how to accomplish this task.
Additional related resources include:
- Modules for working with documents: Core components for working with documents.