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