Class ThinkingConfigParam
-
- All Implemented Interfaces:
public final class ThinkingConfigParamConfiguration for enabling Claude's extended thinking.
When enabled, responses include
thinkingcontent blocks showing Claude's thinking process before the final answer. Requires a minimum budget of 1,024 tokens and counts towards yourmax_tokenslimit.See extended thinking for details.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceThinkingConfigParam.VisitorAn interface that defines how to map each variant of ThinkingConfigParam to a value of type T.
-
Method Summary
-
-
Method Detail
-
enabled
final Optional<ThinkingConfigEnabled> enabled()
-
disabled
final Optional<ThinkingConfigDisabled> disabled()
-
adaptive
final Optional<ThinkingConfigAdaptive> adaptive()
-
isDisabled
final Boolean isDisabled()
-
isAdaptive
final Boolean isAdaptive()
-
asEnabled
final ThinkingConfigEnabled asEnabled()
-
asDisabled
final ThinkingConfigDisabled asDisabled()
-
asAdaptive
final ThinkingConfigAdaptive asAdaptive()
-
accept
final <T extends Any> T accept(ThinkingConfigParam.Visitor<T> visitor)
Maps this instance's current variant to a value of type T using the given visitor.
Note that this method is not forwards compatible with new variants from the API, unless visitor overrides Visitor.unknown. To handle variants not known to this version of the SDK gracefully, consider overriding Visitor.unknown:
import com.anthropic.core.JsonValue; import java.util.Optional; Optional<String> result = thinkingConfigParam.accept(new ThinkingConfigParam.Visitor<Optional<String>>() { @Override public Optional<String> visitEnabled(ThinkingConfigEnabled enabled) { return Optional.of(enabled.toString()); } // ... @Override public Optional<String> unknown(JsonValue json) { // Or inspect the `json`. return Optional.empty(); } });
-
validate
final ThinkingConfigParam validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
ofEnabled
final static ThinkingConfigParam ofEnabled(ThinkingConfigEnabled enabled)
-
ofDisabled
final static ThinkingConfigParam ofDisabled(ThinkingConfigDisabled disabled)
-
ofAdaptive
final static ThinkingConfigParam ofAdaptive(ThinkingConfigAdaptive adaptive)
-
-
-
-