get_page_section
Extract specific sections from Grokipedia articles by header name to retrieve targeted information without reading entire pages.
Instructions
Extract a specific section from an article by header name.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Unique slug identifier of page to extract section from | |
| section_header | Yes | Exact header text of the section to extract (case-insensitive) | |
| max_length | No | Maximum length of section content to return (default: 5000) |
Input Schema (JSON Schema)
{
"properties": {
"max_length": {
"default": 5000,
"description": "Maximum length of section content to return (default: 5000)",
"minimum": 100,
"title": "Max Length",
"type": "integer"
},
"section_header": {
"description": "Exact header text of the section to extract (case-insensitive)",
"title": "Section Header",
"type": "string"
},
"slug": {
"description": "Unique slug identifier of page to extract section from",
"title": "Slug",
"type": "string"
}
},
"required": [
"slug",
"section_header"
],
"type": "object"
}