@huggingface/tasks
Version:
List of ML tasks for huggingface.co/tasks
15 lines (14 loc) • 371 B
JSON
{
"$id": "/inference/schemas/summarization/output.json",
"$schema": "http://json-schema.org/draft-06/schema#",
"description": "Outputs of inference for the Summarization task",
"title": "SummarizationOutput",
"type": "object",
"properties": {
"summary_text": {
"type": "string",
"description": "The summarized text."
}
},
"required": ["summary_text"]
}