Class ThinkingTypes.Builder
-
- All Implemented Interfaces:
public final class ThinkingTypes.BuilderA builder for ThinkingTypes.
-
-
Method Summary
-
-
Method Detail
-
adaptive
final ThinkingTypes.Builder adaptive(CapabilitySupport adaptive)
Whether the model supports thinking with type 'adaptive' (auto).
-
adaptive
final ThinkingTypes.Builder adaptive(JsonField<CapabilitySupport> adaptive)
Sets Builder.adaptive to an arbitrary JSON value.
You should usually call Builder.adaptive with a well-typed CapabilitySupport value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
enabled
final ThinkingTypes.Builder enabled(CapabilitySupport enabled)
Whether the model supports thinking with type 'enabled'.
-
enabled
final ThinkingTypes.Builder enabled(JsonField<CapabilitySupport> enabled)
Sets Builder.enabled to an arbitrary JSON value.
You should usually call Builder.enabled with a well-typed CapabilitySupport value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ThinkingTypes.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ThinkingTypes.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ThinkingTypes.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ThinkingTypes.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ThinkingTypes.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ThinkingTypes build()
Returns an immutable instance of ThinkingTypes.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.adaptive() .enabled()
-
-
-
-