Class BetaFallbackInfo.Builder
-
- All Implemented Interfaces:
public final class BetaFallbackInfo.BuilderA builder for BetaFallbackInfo.
-
-
Method Summary
Modifier and Type Method Description final BetaFallbackInfo.Buildermodel(Model model)The model that will complete your prompt. final BetaFallbackInfo.Buildermodel(JsonField<Model> model)Sets Builder.model to an arbitrary JSON value. final BetaFallbackInfo.Buildermodel(String value)Sets model to an arbitrary String. final BetaFallbackInfo.BuilderadditionalProperties(Map<String, JsonValue> additionalProperties)final BetaFallbackInfo.BuilderputAdditionalProperty(String key, JsonValue value)final BetaFallbackInfo.BuilderputAllAdditionalProperties(Map<String, JsonValue> additionalProperties)final BetaFallbackInfo.BuilderremoveAdditionalProperty(String key)final BetaFallbackInfo.BuilderremoveAllAdditionalProperties(Set<String> keys)final BetaFallbackInfobuild()Returns an immutable instance of BetaFallbackInfo. -
-
Method Detail
-
model
final BetaFallbackInfo.Builder model(Model model)
The model that will complete your prompt.
See models for additional details and options.
-
model
final BetaFallbackInfo.Builder model(JsonField<Model> model)
Sets Builder.model to an arbitrary JSON value.
You should usually call Builder.model with a well-typed Model value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
model
final BetaFallbackInfo.Builder model(String value)
Sets model to an arbitrary String.
You should usually call model with a well-typed Model constant instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final BetaFallbackInfo.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BetaFallbackInfo.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BetaFallbackInfo.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BetaFallbackInfo.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BetaFallbackInfo.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BetaFallbackInfo build()
Returns an immutable instance of BetaFallbackInfo.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.model()
-
-
-
-