Haystack supports abstractive summarization and you have access to all models here: https://huggingface.co/models?pipeline_tag=summarization&sor.... you can build them into a pipeline e.g. with a retriever to filter out irrelevant docs (e.g. those not containing a certain word)
Probably you are interested in extractive summarization for explainability reasons? To overcome this, the summarizer module will show you the passages that were used for creating the abstractive summarization. Hope this is a potential solution for your case!
Probably you are interested in extractive summarization for explainability reasons? To overcome this, the summarizer module will show you the passages that were used for creating the abstractive summarization. Hope this is a potential solution for your case!