Class AnthropicTaskSettings.Builder
java.lang.Object
co.elastic.clients.util.ObjectBuilderBase
co.elastic.clients.util.WithJsonObjectBuilderBase<AnthropicTaskSettings.Builder>
co.elastic.clients.elasticsearch.inference.AnthropicTaskSettings.Builder
- All Implemented Interfaces:
WithJson<AnthropicTaskSettings.Builder>,ObjectBuilder<AnthropicTaskSettings>
- Enclosing class:
- AnthropicTaskSettings
public static class AnthropicTaskSettings.Builder
extends WithJsonObjectBuilderBase<AnthropicTaskSettings.Builder>
implements ObjectBuilder<AnthropicTaskSettings>
Builder for
AnthropicTaskSettings.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()Builds aAnthropicTaskSettings.maxTokens(int value) Required - For acompletiontask, it is the maximum number of tokens to generate before stopping.protected AnthropicTaskSettings.Builderself()temperature(Float value) For acompletiontask, it is the amount of randomness injected into the response.For acompletiontask, it specifies to only sample from the top K options for each subsequent token.For acompletiontask, it specifies to use Anthropic's nucleus sampling.Methods inherited from class co.elastic.clients.util.WithJsonObjectBuilderBase
withJsonMethods inherited from class co.elastic.clients.util.ObjectBuilderBase
_checkSingleUse, _listAdd, _listAddAll, _mapPut, _mapPutAll
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
maxTokens
Required - For acompletiontask, it is the maximum number of tokens to generate before stopping.API name:
max_tokens -
temperature
For acompletiontask, it is the amount of randomness injected into the response. For more details about the supported range, refer to Anthropic documentation.API name:
temperature -
topK
For acompletiontask, it specifies to only sample from the top K options for each subsequent token. It is recommended for advanced use cases only. You usually only need to usetemperature.API name:
top_k -
topP
For acompletiontask, it specifies to use Anthropic's nucleus sampling. In nucleus sampling, Anthropic computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches the specified probability. You should either altertemperatureortop_p, but not both. It is recommended for advanced use cases only. You usually only need to usetemperature.API name:
top_p -
self
- Specified by:
selfin classWithJsonObjectBuilderBase<AnthropicTaskSettings.Builder>
-
build
Builds aAnthropicTaskSettings.- Specified by:
buildin interfaceObjectBuilder<AnthropicTaskSettings>- Throws:
NullPointerException- if some of the required fields are null.
-