UNPKG

@huggingface/tasks

Version:
19 lines (18 loc) 507 B
{ "$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"] }