read_section
Extract specific document sections and their subsections by providing a document ID and section ID. Simplify navigation and analysis of lengthy documents by retrieving precise content.
Instructions
Read content of a specific document section.
Args:
doc_id: Document identifier
section_id: Section ID from outline (e.g., 'h1_0', 'h2_1')
Returns:
Section content with subsections
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doc_id | Yes | ||
section_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"doc_id": {
"title": "Doc Id",
"type": "string"
},
"section_id": {
"title": "Section Id",
"type": "string"
}
},
"required": [
"doc_id",
"section_id"
],
"title": "read_sectionArguments",
"type": "object"
}