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
# ID of the model to use. You can use the [List models](https://platform.openai.com/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](https://platform.openai.com/docs/models) for descriptions of them.
@@ -236,29 +236,25 @@ class CompletionCreateParams < OpenAI::BaseModel
236
236
# [Model overview](https://platform.openai.com/docs/models) for descriptions of
237
237
# them.
238
238
classModel < OpenAI::Union
239
+
# @!group
240
+
241
+
GPT_3_5_TURBO_INSTRUCT=:"gpt-3.5-turbo-instruct"
242
+
DAVINCI_002=:"davinci-002"
243
+
BABBAGE_002=:"babbage-002"
244
+
245
+
# @!endgroup
246
+
239
247
variantString
240
248
241
-
# ID of the model to use. You can use the [List models](https://platform.openai.com/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](https://platform.openai.com/docs/models) for descriptions of them.
# Keys are strings with a maximum length of 64 characters. Values are strings with
126
126
# a maximum length of 512 characters.
127
127
#
128
-
# @option params [String, Symbol, OpenAI::Models::Beta::AssistantUpdateParams::Model::AssistantSupportedModels] :model ID of the model to use. You can use the
128
+
# @option params [String, Symbol] :model ID of the model to use. You can use the
129
129
# [List models](https://platform.openai.com/docs/api-reference/models/list) API to
130
130
# see all of your available models, or see our
131
131
# [Model overview](https://platform.openai.com/docs/models) for descriptions of
# @option params [String, Symbol, OpenAI::Models::FineTuning::JobCreateParams::Model::Preset] :model The name of the model to fine-tune. You can select one of the
20
+
# @option params [String, Symbol] :model The name of the model to fine-tune. You can select one of the
0 commit comments