summarize
Generate concise summaries of plain text, web pages, PDF documents, EPUB books, or HTML content. Specify text, desired length, and language for tailored results.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | en | |
maxLength | No | ||
text | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"language": {
"default": "en",
"type": "string"
},
"maxLength": {
"default": 200,
"type": "number"
},
"text": {
"minLength": 1,
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}