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
@@ -100,6 +117,7 @@ class TranscriptionCreateParams < OpenAI::BaseModel
100
117
# def initialize(
101
118
# file:,
102
119
# model:,
120
+
# include: nil,
103
121
# language: nil,
104
122
# prompt: nil,
105
123
# response_format: nil,
@@ -115,12 +133,13 @@ class TranscriptionCreateParams < OpenAI::BaseModel
115
133
116
134
# @abstract
117
135
#
118
-
# ID of the model to use. Only `whisper-1` (which is powered by our open source
119
-
# Whisper V2 model) is currently available.
136
+
# ID of the model to use. The options are `gpt-4o-transcribe`,
137
+
# `gpt-4o-mini-transcribe`, and `whisper-1` (which is powered by our open source
138
+
# Whisper V2 model).
120
139
classModel < OpenAI::Union
121
140
variantString
122
141
123
-
# ID of the model to use. Only `whisper-1` (which is powered by our open source Whisper V2 model) is currently available.
142
+
# ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, and `whisper-1` (which is powered by our open source Whisper V2 model).
# Emitted when there is an additional text delta. This is also the first event
9
+
# emitted when the transcription starts. Only emitted when you
10
+
# [create a transcription](https://platform.openai.com/docs/api-reference/audio/create-transcription)
11
+
# with the `Stream` parameter set to `true`.
12
+
classTranscriptionStreamEvent < OpenAI::Union
13
+
discriminator:type
14
+
15
+
# Emitted when there is an additional text delta. This is also the first event emitted when the transcription starts. Only emitted when you [create a transcription](https://platform.openai.com/docs/api-reference/audio/create-transcription) with the `Stream` parameter set to `true`.
# Emitted when the transcription is complete. Contains the complete transcription text. Only emitted when you [create a transcription](https://platform.openai.com/docs/api-reference/audio/create-transcription) with the `Stream` parameter set to `true`.
0 commit comments