@huggingface/tasks
Version:
List of ML tasks for huggingface.co/tasks
19 lines (18 loc) • 507 B
JSON
{
"$id": "/inference/schemas/text-to-audio/output.json",
"$schema": "http://json-schema.org/draft-06/schema#",
"description": "Outputs of inference for the Text To Audio task",
"title": "TextToAudioOutput",
"type": "object",
"properties": {
"audio": {
"description": "The generated audio waveform.",
"comment": "type=binary"
},
"sampling_rate": {
"type": "number",
"description": "The sampling rate of the generated audio waveform."
}
},
"required": ["audio", "sampling_rate"]
}