Input
ExecutionExecution trigger
AI/Generative
Summarizes long text using an LLM with configurable strategies. Supports Map-Reduce (parallel, fast), Refine (sequential, coherent), Hierarchical (structure-aware), Hybrid (parallel + coherent), and Sliding Window (memory-efficient). Optional Chain of Density post-processing for optimal information density.
Scores range from 0 to 10. Higher values mean more impact, exposure, or operational weight.
Execution trigger
Bit describing the provider/model to use for summarization
The long text to summarize (markdown supported)
Summarization strategy: • Refine — sequential, best coherence, no parallelism • MapReduce — parallel chunking, fast, may lose cross-chunk context • Hierarchical — structure-aware tree, best for headed documents • Hybrid — MapReduce speed + Refine coherence polish • SlidingWindow — fixed memory buffer, best for very long documents
Post-processing to increase information density: • None — use the strategy output as-is • ChainOfDensity — iteratively compress to optimal density (~0.15 entities/token)
Optional focus instructions (e.g. 'focus on action items', 'use bullet points')
Optional existing summary to build upon (used as initial context for Refine/Hybrid/SlidingWindow strategies)
Maximum characters per chunk. Reduce for models with smaller context windows (default: 8000)
Overlap between adjacent chunks as percentage (0-50). Prevents information loss at boundaries (default: 10)
Extract and track named entities across chunks to prevent information loss. Adds 2-3 extra LLM calls but improves factual preservation.
Parallel requests for MapReduce/Hybrid strategies. 0 = unlimited, 1 = sequential (default: 4)
Safety limit on summarization passes. Each pass reduces total length (default: 5)
Number of Chain of Density refinement steps when densification is enabled (1-5, default: 3). Research shows step 3 is the human-preferred sweet spot.
Fires once summarization is complete
The final summarized text
Tracked entities found in the document (only populated when Track Entities is enabled)
Total number of LLM invocations used during summarization