summarize_large_chat
Process large chat conversations by breaking them into chunks, summarizing each section, and generating a comprehensive master summary for better analysis and review.
Instructions
Handle extremely large chat histories by chunking them into manageable pieces. Each chunk gets its own summary, then creates a master summary.
Args: chat_history: The large chat conversation text to summarize title: Optional title for the summary chunk_size: Size of each chunk in characters (default: 50,000) overlap: Overlap between chunks in characters (default: 5,000)
Returns: Information about the chunked summaries created
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chat_history | Yes | ||
chunk_size | No | ||
overlap | No | ||
title | No |