Package com.openai.models.conversations
Class SummaryTextContent
-
- All Implemented Interfaces:
public final class SummaryTextContentA summary text from the model.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classSummaryTextContent.BuilderA builder for SummaryTextContent.
-
Method Summary
Modifier and Type Method Description final Stringtext()A summary of the reasoning output from the model so far. final JsonValue_type()The type of the object. final JsonField<String>_text()Returns the raw JSON value of text. final Map<String, JsonValue>_additionalProperties()final SummaryTextContent.BuildertoBuilder()final SummaryTextContentvalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static SummaryTextContent.Builderbuilder()Returns a mutable builder for constructing an instance of SummaryTextContent. -
-
Method Detail
-
_type
final JsonValue _type()
The type of the object. Always
summary_text.Expected to always return the following:
JsonValue.from("summary_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 SummaryTextContent.Builder toBuilder()
-
validate
final SummaryTextContent validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
builder
final static SummaryTextContent.Builder builder()
Returns a mutable builder for constructing an instance of SummaryTextContent.
The following fields are required:
.text()
-
-
-
-