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 acompletion
task, it is the maximum number of tokens to generate before stopping.protected AnthropicTaskSettings.Builder
self()
temperature
(Float value) For acompletion
task, it is the amount of randomness injected into the response.For acompletion
task, it specifies to only sample from the top K options for each subsequent token.For acompletion
task, it specifies to use Anthropic's nucleus sampling.Methods inherited from class co.elastic.clients.util.WithJsonObjectBuilderBase
withJson
Methods inherited from class co.elastic.clients.util.ObjectBuilderBase
_checkSingleUse, _listAdd, _listAddAll, _mapPut, _mapPutAll
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
maxTokens
Required - For acompletion
task, it is the maximum number of tokens to generate before stopping.API name:
max_tokens
-
temperature
For acompletion
task, 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 acompletion
task, 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 acompletion
task, 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 altertemperature
ortop_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:
self
in classWithJsonObjectBuilderBase<AnthropicTaskSettings.Builder>
-
build
Builds aAnthropicTaskSettings
.- Specified by:
build
in interfaceObjectBuilder<AnthropicTaskSettings>
- Throws:
NullPointerException
- if some of the required fields are null.
-