summarize_article_section
Extract concise summaries of specific sections from Wikipedia articles by specifying the title and section. Ideal for quick insights without reading the full content.
Instructions
Get a summary of a specific section of a Wikipedia article.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_length | No | ||
section_title | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"max_length": {
"default": 150,
"title": "Max Length",
"type": "integer"
},
"section_title": {
"title": "Section Title",
"type": "string"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"section_title"
],
"type": "object"
}