Spaces:
Configuration error
Configuration error
File size: 1,700 Bytes
0f0a7ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
{
"type": "object",
"properties": {
"text": {"type": "string"},
"segments": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {"type": "integer", "minimum":0},
"start": {"type": "number", "minimum":0},
"end": {"type": "number", "minimum":0},
"text": {"type": "string"},
"tokens": {
"type": "array",
"items": {"type": "integer", "minimum": 0, "maximum": 51864}
},
"temperature": {"type": "number", "minimum":0, "maximum":1},
"avg_logprob": {"type": "number", "maximum":0},
"compression_ratio": {"type": "number", "minimum":0},
"no_speech_prob": {"type": "number", "minimum":0, "maximum":1},
"confidence": {"type": "number", "minimum":0, "maximum":1},
"words": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {"type": "string"},
"start": {"type": "number", "minimum":0},
"end": {"type": "number", "minimum":0},
"confidence": {"type": "number", "minimum":0, "maximum":1}
}
}
}
}
},
"minItems": 0,
"uniqueItems": true
}
}
}
|