summarize_with_sequential_notes
Reads a document or text sequentially to synthesize notes focused on a specific question, enabling query-aware summarization of long content without loading it entirely into context.
Instructions
Reads a document or string sequentially to synthesize query-aware notes.
Exactly one of context_path or context_text must be provided. Do NOT provide both.
Note: This operation is resource-intensive and can be time-consuming.
Args:
context_path (str): The path to the context file.
context_text (str): The text content to synthesize notes from.
question (str): The goal of the note-taking.
Returns:
str: A string containing the synthesized notes, focusing on the question.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| question | No | ||
| context_path | No | ||
| context_text | No |