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