What can you do with it?

The /summarization command enables you to create concise summaries of text, documents, and other content using AI. You can summarize long articles, extract key points from PDFs, condense meeting notes, create executive summaries, and generate brief overviews of complex documents in various formats.

How to use it?

Basic Command Structure

/summarization [content] [options]

Parameters

Required:

  • content - The text or file to summarize

Optional:

  • file - URL or reference to a document to summarize (PDF, text files)
  • format - Output format: json, plaintext, markdown, or html (defaults to json)
  • length - Desired summary length: brief, medium, or detailed

Response Format

The command returns:

{
  "output": "summarized content",
  "key_points": ["main point 1", "main point 2"],
  "word_count": "approximate word count",
  "format": "output format used"
}

Examples

Basic Usage

/summarization
content: [long article text]

Creates a concise summary of the provided text content.

Advanced Usage

/summarization
file: research-paper.pdf
format: markdown
length: detailed

Generates a detailed summary of a PDF research paper in markdown format with comprehensive key points.

Specific Use Case

/summarization
file: meeting-transcript.txt
format: plaintext
length: brief

Creates a brief plain text summary of meeting notes, highlighting only the most important decisions and action items.