Class BetaThinkingConfigAdaptive.Builder
-
- All Implemented Interfaces:
public final class BetaThinkingConfigAdaptive.BuilderA builder for BetaThinkingConfigAdaptive.
-
-
Method Summary
-
-
Method Detail
-
type
final BetaThinkingConfigAdaptive.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("adaptive")This method is primarily for setting the field to an undocumented or not yet supported value.
-
display
final BetaThinkingConfigAdaptive.Builder display(BetaThinkingConfigAdaptive.Display display)
Controls how thinking content appears in the response. When set to
summarized, thinking is returned normally. When set toomitted, thinking content is redacted but a signature is returned for multi-turn continuity. Defaults tosummarized.
-
display
final BetaThinkingConfigAdaptive.Builder display(Optional<BetaThinkingConfigAdaptive.Display> display)
Alias for calling Builder.display with
display.orElse(null).
-
display
final BetaThinkingConfigAdaptive.Builder display(JsonField<BetaThinkingConfigAdaptive.Display> display)
Sets Builder.display to an arbitrary JSON value.
You should usually call Builder.display with a well-typed Display value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final BetaThinkingConfigAdaptive.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BetaThinkingConfigAdaptive.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BetaThinkingConfigAdaptive.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BetaThinkingConfigAdaptive.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BetaThinkingConfigAdaptive.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BetaThinkingConfigAdaptive build()
Returns an immutable instance of BetaThinkingConfigAdaptive.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-