Class ScoreModelGrader.Input.Content.OutputText
-
- All Implemented Interfaces:
public final class ScoreModelGrader.Input.Content.OutputTextA text output from the model.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classScoreModelGrader.Input.Content.OutputText.BuilderA builder for OutputText.
-
Method Summary
Modifier and Type Method Description final Stringtext()The text output from the model. final JsonValue_type()The type of the output text. final JsonField<String>_text()Returns the raw JSON value of text. final Map<String, JsonValue>_additionalProperties()final ScoreModelGrader.Input.Content.OutputText.BuildertoBuilder()final ScoreModelGrader.Input.Content.OutputTextvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static ScoreModelGrader.Input.Content.OutputText.Builderbuilder()Returns a mutable builder for constructing an instance of OutputText. -
-
Method Detail
-
_type
final JsonValue _type()
The type of the output text. Always
output_text.Expected to always return the following:
JsonValue.from("output_text")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_text
final JsonField<String> _text()
Returns the raw JSON value of text.
Unlike text, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final ScoreModelGrader.Input.Content.OutputText.Builder toBuilder()
-
validate
final ScoreModelGrader.Input.Content.OutputText validate()
-
builder
final static ScoreModelGrader.Input.Content.OutputText.Builder builder()
Returns a mutable builder for constructing an instance of OutputText.
The following fields are required:
.text()
-
-
-
-