Hugging Face · Schema
SummarizationRequest
Properties
| Name | Type | Description |
|---|---|---|
| inputs | string | The text to summarize |
| parameters | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SummarizationRequest",
"title": "SummarizationRequest",
"type": "object",
"required": [
"inputs"
],
"properties": {
"inputs": {
"type": "string",
"description": "The text to summarize",
"example": "example_value"
},
"parameters": {
"type": "object",
"properties": {
"min_length": {
"type": "integer",
"description": "Minimum length of the summary"
},
"max_length": {
"type": "integer",
"description": "Maximum length of the summary"
}
},
"example": "example_value"
}
}
}