Class EvalCreateResponse.TestingCriterion.ScoreModel.Input
-
- All Implemented Interfaces:
public final class EvalCreateResponse.TestingCriterion.ScoreModel.Input
A message input to the model with a role indicating instruction following hierarchy. Instructions given with the
developer
orsystem
role take precedence over instructions given with theuser
role. Messages with theassistant
role are presumed to have been generated by the model in previous interactions.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
EvalCreateResponse.TestingCriterion.ScoreModel.Input.Builder
A builder for Input.
public final class
EvalCreateResponse.TestingCriterion.ScoreModel.Input.Content
Text inputs to the model - can contain template strings.
public final class
EvalCreateResponse.TestingCriterion.ScoreModel.Input.Role
The role of the message input. One of
user
,assistant
,system
, ordeveloper
.public final class
EvalCreateResponse.TestingCriterion.ScoreModel.Input.Type
The type of the message input. Always
message
.
-
Method Summary
-
-
Method Detail
-
content
final EvalCreateResponse.TestingCriterion.ScoreModel.Input.Content content()
Text inputs to the model - can contain template strings.
-
role
final EvalCreateResponse.TestingCriterion.ScoreModel.Input.Role role()
The role of the message input. One of
user
,assistant
,system
, ordeveloper
.
-
type
final Optional<EvalCreateResponse.TestingCriterion.ScoreModel.Input.Type> type()
The type of the message input. Always
message
.
-
_content
final JsonField<EvalCreateResponse.TestingCriterion.ScoreModel.Input.Content> _content()
Returns the raw JSON value of content.
Unlike content, this method doesn't throw if the JSON field has an unexpected type.
-
_role
final JsonField<EvalCreateResponse.TestingCriterion.ScoreModel.Input.Role> _role()
Returns the raw JSON value of role.
Unlike role, this method doesn't throw if the JSON field has an unexpected type.
-
_type
final JsonField<EvalCreateResponse.TestingCriterion.ScoreModel.Input.Type> _type()
Returns the raw JSON value of type.
Unlike type, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final EvalCreateResponse.TestingCriterion.ScoreModel.Input.Builder toBuilder()
-
validate
final EvalCreateResponse.TestingCriterion.ScoreModel.Input validate()
-
builder
final static EvalCreateResponse.TestingCriterion.ScoreModel.Input.Builder builder()
Returns a mutable builder for constructing an instance of Input.
The following fields are required:
.content() .role()
-
-
-
-