@@ -78,6 +78,7 @@ def create(
78
78
* ,
79
79
file : FileTypes ,
80
80
model : Union [str , AudioModel ],
81
+ chunking_strategy : Optional [transcription_create_params .ChunkingStrategy ] | NotGiven = NOT_GIVEN ,
81
82
include : List [TranscriptionInclude ] | NotGiven = NOT_GIVEN ,
82
83
response_format : Literal ["verbose_json" ],
83
84
language : str | NotGiven = NOT_GIVEN ,
@@ -98,6 +99,7 @@ def create(
98
99
* ,
99
100
file : FileTypes ,
100
101
model : Union [str , AudioModel ],
102
+ chunking_strategy : Optional [transcription_create_params .ChunkingStrategy ] | NotGiven = NOT_GIVEN ,
101
103
response_format : Literal ["text" , "srt" , "vtt" ],
102
104
include : List [TranscriptionInclude ] | NotGiven = NOT_GIVEN ,
103
105
language : str | NotGiven = NOT_GIVEN ,
@@ -374,11 +376,11 @@ async def create(
374
376
model : Union [str , AudioModel ],
375
377
chunking_strategy : Optional [transcription_create_params .ChunkingStrategy ] | NotGiven = NOT_GIVEN ,
376
378
include : List [TranscriptionInclude ] | NotGiven = NOT_GIVEN ,
377
- response_format : Union [Literal ["json" ], NotGiven ] = NOT_GIVEN ,
378
379
language : str | NotGiven = NOT_GIVEN ,
379
380
prompt : str | NotGiven = NOT_GIVEN ,
381
+ response_format : Union [Literal ["json" ], NotGiven ] = NOT_GIVEN ,
382
+ stream : Optional [Literal [False ]] | NotGiven = NOT_GIVEN ,
380
383
temperature : float | NotGiven = NOT_GIVEN ,
381
- include : List [TranscriptionInclude ] | NotGiven = NOT_GIVEN ,
382
384
timestamp_granularities : List [Literal ["word" , "segment" ]] | NotGiven = NOT_GIVEN ,
383
385
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
384
386
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -455,6 +457,7 @@ async def create(
455
457
* ,
456
458
file : FileTypes ,
457
459
model : Union [str , AudioModel ],
460
+ chunking_strategy : Optional [transcription_create_params .ChunkingStrategy ] | NotGiven = NOT_GIVEN ,
458
461
include : List [TranscriptionInclude ] | NotGiven = NOT_GIVEN ,
459
462
response_format : Literal ["verbose_json" ],
460
463
language : str | NotGiven = NOT_GIVEN ,
@@ -475,6 +478,7 @@ async def create(
475
478
* ,
476
479
file : FileTypes ,
477
480
model : Union [str , AudioModel ],
481
+ chunking_strategy : Optional [transcription_create_params .ChunkingStrategy ] | NotGiven = NOT_GIVEN ,
478
482
include : List [TranscriptionInclude ] | NotGiven = NOT_GIVEN ,
479
483
response_format : Literal ["text" , "srt" , "vtt" ],
480
484
language : str | NotGiven = NOT_GIVEN ,
0 commit comments