Class RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams
-
- All Implemented Interfaces:
public final class RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams.Builder
A builder for SamplingParams.
public final class
RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams.Text
Configuration options for a text response from the model. Can be plain text or structured JSON data. Learn more:
-
Method Summary
Modifier and Type Method Description final Optional<Long>
maxCompletionTokens()
The maximum number of tokens in the generated output. final Optional<Long>
seed()
A seed value to initialize the randomness, during sampling. final Optional<Double>
temperature()
A higher temperature increases randomness in the outputs. final Optional<RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams.Text>
text()
Configuration options for a text response from the model. final Optional<List<Tool>>
tools()
An array of tools the model may call while generating a response. final Optional<Double>
topP()
An alternative to temperature for nucleus sampling; 1.0 includes all tokens. final JsonField<Long>
_maxCompletionTokens()
Returns the raw JSON value of maxCompletionTokens. final JsonField<Long>
_seed()
Returns the raw JSON value of seed. final JsonField<Double>
_temperature()
Returns the raw JSON value of temperature. final JsonField<RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams.Text>
_text()
Returns the raw JSON value of text. final JsonField<List<Tool>>
_tools()
Returns the raw JSON value of tools. final JsonField<Double>
_topP()
Returns the raw JSON value of topP. final Map<String, JsonValue>
_additionalProperties()
final RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams.Builder
toBuilder()
final RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams.Builder
builder()
Returns a mutable builder for constructing an instance of SamplingParams. -
-
Method Detail
-
maxCompletionTokens
final Optional<Long> maxCompletionTokens()
The maximum number of tokens in the generated output.
-
temperature
final Optional<Double> temperature()
A higher temperature increases randomness in the outputs.
-
text
final Optional<RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams.Text> text()
Configuration options for a text response from the model. Can be plain text or structured JSON data. Learn more:
-
tools
final Optional<List<Tool>> tools()
An array of tools the model may call while generating a response. You can specify which tool to use by setting the
tool_choice
parameter.The two categories of tools you can provide the model are:
Built-in tools: Tools that are provided by OpenAI that extend the model's capabilities, like web search or file search. Learn more about built-in tools.
Function calls (custom tools): Functions that are defined by you, enabling the model to call your own code. Learn more about function calling.
-
topP
final Optional<Double> topP()
An alternative to temperature for nucleus sampling; 1.0 includes all tokens.
-
_maxCompletionTokens
final JsonField<Long> _maxCompletionTokens()
Returns the raw JSON value of maxCompletionTokens.
Unlike maxCompletionTokens, this method doesn't throw if the JSON field has an unexpected type.
-
_seed
final JsonField<Long> _seed()
Returns the raw JSON value of seed.
Unlike seed, this method doesn't throw if the JSON field has an unexpected type.
-
_temperature
final JsonField<Double> _temperature()
Returns the raw JSON value of temperature.
Unlike temperature, this method doesn't throw if the JSON field has an unexpected type.
-
_text
final JsonField<RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams.Text> _text()
Returns the raw JSON value of text.
Unlike text, this method doesn't throw if the JSON field has an unexpected type.
-
_tools
final JsonField<List<Tool>> _tools()
Returns the raw JSON value of tools.
Unlike tools, this method doesn't throw if the JSON field has an unexpected type.
-
_topP
final JsonField<Double> _topP()
Returns the raw JSON value of topP.
Unlike topP, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams.Builder toBuilder()
-
validate
final RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams validate()
-
builder
final static RunCreateParams.DataSource.CreateEvalResponsesRunDataSource.SamplingParams.Builder builder()
Returns a mutable builder for constructing an instance of SamplingParams.
-
-
-
-