Skip to content

summarize

by official

text-processing

Summarize text using AI

summarization text ai
# summarize

Summarize text using AI. Designed for quick overviews, briefs, or executive summaries.

## Usage

```bash
summarize --max-length 200 --style neutral < input.txt
```

## Arguments

- `--max-length`: Maximum length of the summary in words. Default: `200`.
- `--style`: Summary style. Options: `neutral`, `bullet`, `executive`.

## Examples

```bash
cat report.txt | summarize --max-length 120 --style executive
```