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
@@ -57,13 +57,13 @@ class SpeechCreateParams < OpenAI::Internal::Type::BaseModel
57
57
#
58
58
# @param input [String] The text to generate audio for. The maximum length is 4096 characters.
59
59
#
60
-
# @param model [String, Symbol, OpenAI::Audio::SpeechModel] One of the available [TTS models](https://platform.openai.com/docs/models#tts):
60
+
# @param model [String, Symbol, OpenAI::Models::Audio::SpeechModel] One of the available [TTS models](https://platform.openai.com/docs/models#tts):
61
61
#
62
-
# @param voice [String, Symbol, OpenAI::Audio::SpeechCreateParams::Voice] The voice to use when generating the audio. Supported voices are `alloy`, `ash`,
62
+
# @param voice [String, Symbol, OpenAI::Models::Audio::SpeechCreateParams::Voice] The voice to use when generating the audio. Supported voices are `alloy`, `ash`,
63
63
#
64
64
# @param instructions [String] Control the voice of your generated audio with additional instructions. Does not
65
65
#
66
-
# @param response_format [Symbol, OpenAI::Audio::SpeechCreateParams::ResponseFormat] The format to audio in. Supported formats are `mp3`, `opus`, `aac`, `flac`, `wav
66
+
# @param response_format [Symbol, OpenAI::Models::Audio::SpeechCreateParams::ResponseFormat] The format to audio in. Supported formats are `mp3`, `opus`, `aac`, `flac`, `wav
67
67
#
68
68
# @param speed [Float] The speed of the generated audio. Select a value from `0.25` to `4.0`. `1.0` is
# Some parameter documentations has been truncated, see
23
-
# {OpenAI::Audio::Transcription} for more details.
23
+
# {OpenAI::Models::Audio::Transcription} for more details.
24
24
#
25
25
# Represents a transcription response returned by model, based on the provided
26
26
# input.
27
27
#
28
28
# @param text [String] The transcribed text.
29
29
#
30
-
# @param logprobs [Array<OpenAI::Audio::Transcription::Logprob>] The log probabilities of the tokens in the transcription. Only returned with the
30
+
# @param logprobs [Array<OpenAI::Models::Audio::Transcription::Logprob>] The log probabilities of the tokens in the transcription. Only returned with the
@@ -100,21 +100,21 @@ class TranscriptionCreateParams < OpenAI::Internal::Type::BaseModel
100
100
#
101
101
# @param file [Pathname, StringIO, IO, String, OpenAI::FilePart] The audio file object (not file name) to transcribe, in one of these formats: fl
102
102
#
103
-
# @param model [String, Symbol, OpenAI::AudioModel] ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transc
103
+
# @param model [String, Symbol, OpenAI::Models::AudioModel] ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transc
104
104
#
105
-
# @param chunking_strategy [Symbol, :auto, OpenAI::Audio::TranscriptionCreateParams::ChunkingStrategy::VadConfig, nil] Controls how the audio is cut into chunks. When set to `"auto"`, the server firs
105
+
# @param chunking_strategy [Symbol, :auto, OpenAI::Models::Audio::TranscriptionCreateParams::ChunkingStrategy::VadConfig, nil] Controls how the audio is cut into chunks. When set to `"auto"`, the server firs
106
106
#
107
-
# @param include [Array<Symbol, OpenAI::Audio::TranscriptionInclude>] Additional information to include in the transcription response.
107
+
# @param include [Array<Symbol, OpenAI::Models::Audio::TranscriptionInclude>] Additional information to include in the transcription response.
108
108
#
109
109
# @param language [String] The language of the input audio. Supplying the input language in [ISO-639-1](htt
110
110
#
111
111
# @param prompt [String] An optional text to guide the model's style or continue a previous audio segment
112
112
#
113
-
# @param response_format [Symbol, OpenAI::AudioResponseFormat] The format of the output, in one of these options: `json`, `text`, `srt`, `verbo
113
+
# @param response_format [Symbol, OpenAI::Models::AudioResponseFormat] The format of the output, in one of these options: `json`, `text`, `srt`, `verbo
114
114
#
115
115
# @param temperature [Float] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the
116
116
#
117
-
# @param timestamp_granularities [Array<Symbol, OpenAI::Audio::TranscriptionCreateParams::TimestampGranularity>] The timestamp granularities to populate for this transcription. `response_format
117
+
# @param timestamp_granularities [Array<Symbol, OpenAI::Models::Audio::TranscriptionCreateParams::TimestampGranularity>] The timestamp granularities to populate for this transcription. `response_format
# @param type [Symbol, OpenAI::Audio::TranscriptionCreateParams::ChunkingStrategy::VadConfig::Type] Must be set to `server_vad` to enable manual chunking using server side VAD.
185
+
# @param type [Symbol, OpenAI::Models::Audio::TranscriptionCreateParams::ChunkingStrategy::VadConfig::Type] Must be set to `server_vad` to enable manual chunking using server side VAD.
186
186
#
187
187
# @param prefix_padding_ms [Integer] Amount of audio to include before the VAD detected speech (in
188
188
#
@@ -192,7 +192,7 @@ class VadConfig < OpenAI::Internal::Type::BaseModel
192
192
193
193
# Must be set to `server_vad` to enable manual chunking using server side VAD.
# Some parameter documentations has been truncated, see
30
-
# {OpenAI::Audio::TranscriptionTextDeltaEvent} for more details.
30
+
# {OpenAI::Models::Audio::TranscriptionTextDeltaEvent} for more details.
31
31
#
32
32
# Emitted when there is an additional text delta. This is also the first event
33
33
# emitted when the transcription starts. Only emitted when you
@@ -36,7 +36,7 @@ class TranscriptionTextDeltaEvent < OpenAI::Internal::Type::BaseModel
36
36
#
37
37
# @param delta [String] The text delta that was additionally transcribed.
38
38
#
39
-
# @param logprobs [Array<OpenAI::Audio::TranscriptionTextDeltaEvent::Logprob>] The log probabilities of the delta. Only included if you [create a transcription
39
+
# @param logprobs [Array<OpenAI::Models::Audio::TranscriptionTextDeltaEvent::Logprob>] The log probabilities of the delta. Only included if you [create a transcription
40
40
#
41
41
# @param type [Symbol, :"transcript.text.delta"] The type of the event. Always `transcript.text.delta`.
42
42
@@ -61,7 +61,7 @@ class Logprob < OpenAI::Internal::Type::BaseModel
0 commit comments