content_generation_summarize
Generate concise summaries from text or web content to create brief overviews for SEO optimization and content planning.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| language_code | No | Language code | |
| language_name | No | Language name | |
| summary_size | No | Summary size | |
| text | No | Text to summarize | |
| url | No | URL to extract text from |
Input Schema (JSON Schema)
{
"properties": {
"language_code": {
"description": "Language code",
"type": "string"
},
"language_name": {
"description": "Language name",
"type": "string"
},
"summary_size": {
"description": "Summary size",
"enum": [
"small",
"medium",
"large"
],
"type": "string"
},
"text": {
"description": "Text to summarize",
"type": "string"
},
"url": {
"description": "URL to extract text from",
"type": "string"
}
},
"type": "object"
}