21 lines
426 B
Markdown
21 lines
426 B
Markdown
# 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
|
|
```
|