get_page_content
Extract clean article text from Grokipedia pages, removing citations and metadata to provide focused content for research and analysis.
Instructions
Get only the article content without citations or metadata.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Unique slug identifier of the page to retrieve content from | |
| max_length | No | Maximum length of content to return (default: 10000) |
Input Schema (JSON Schema)
{
"properties": {
"max_length": {
"default": 10000,
"description": "Maximum length of content to return (default: 10000)",
"minimum": 100,
"title": "Max Length",
"type": "integer"
},
"slug": {
"description": "Unique slug identifier of the page to retrieve content from",
"title": "Slug",
"type": "string"
}
},
"required": [
"slug"
],
"type": "object"
}