You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi.yaml
+32-10Lines changed: 32 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -2439,12 +2439,23 @@ components:
2439
2439
minimum: 0.0
2440
2440
maximum: 1.0
2441
2441
timestamp_granularities:
2442
-
type: string
2443
-
description: Controls level of timestamp detail in verbose_json. Only used when response_format is verbose_json.
2442
+
oneOf:
2443
+
- type: string
2444
+
enum:
2445
+
- segment
2446
+
- word
2447
+
- type: array
2448
+
items:
2449
+
type: string
2450
+
enum:
2451
+
- segment
2452
+
- word
2453
+
uniqueItems: true
2454
+
minItems: 1
2455
+
maxItems: 2
2456
+
description: Controls level of timestamp detail in verbose_json. Only used when response_format is verbose_json. Can be a single granularity or an array to get multiple levels.
2444
2457
default: segment
2445
-
enum:
2446
-
- segment
2447
-
- word
2458
+
example: ["word", "segment"]
2448
2459
2449
2460
AudioTranscriptionResponse:
2450
2461
oneOf:
@@ -2593,12 +2604,23 @@ components:
2593
2604
minimum: 0.0
2594
2605
maximum: 1.0
2595
2606
timestamp_granularities:
2596
-
type: string
2597
-
description: Controls level of timestamp detail in verbose_json. Only used when response_format is verbose_json.
2607
+
oneOf:
2608
+
- type: string
2609
+
enum:
2610
+
- segment
2611
+
- word
2612
+
- type: array
2613
+
items:
2614
+
type: string
2615
+
enum:
2616
+
- segment
2617
+
- word
2618
+
uniqueItems: true
2619
+
minItems: 1
2620
+
maxItems: 2
2621
+
description: Controls level of timestamp detail in verbose_json. Only used when response_format is verbose_json. Can be a single granularity or an array to get multiple levels.
0 commit comments