chimera_summarize
Summarizes text by extracting top-ranked sentences via TF-IDF, reducing length for downstream tools. Automatically tracks token savings.
Instructions
LLM-free extractive summarizer. Ranks sentences by TF-IDF and returns top N. Token savings are automatically recorded to chimera_dashboard (set auto_track=false to disable). Use before passing long docs to other tools.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Text to summarize | |
| ratio | No | Target output/input ratio (0.05–0.9). Default 0.25 | |
| min_sentences | No | Minimum sentences to keep. Default 3. | |
| auto_track | No | Automatically record token savings to the cost tracker (visible in chimera_dashboard). Default true. | |
| model | No | Model name for cost tracking. Default: claude-sonnet-4-6. | claude-sonnet-4-6 |
| namespace | No | Cost tracker namespace (default: 'default'). | default |