Class BetaCompactionBlock
-
- All Implemented Interfaces:
public final class BetaCompactionBlockA compaction block returned when autocompact is triggered.
When content is None, it indicates the compaction failed to produce a valid summary (e.g., malformed output from the model). Clients may round-trip compaction blocks with null content; the server treats them as no-ops.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classBetaCompactionBlock.BuilderA builder for BetaCompactionBlock.
-
Method Summary
Modifier and Type Method Description final BetaCompactionBlockParamtoParam()final Optional<String>content()Summary of compacted content, or null if compaction failed final Optional<String>encryptedContent()Opaque metadata from prior compaction, to be round-tripped verbatim final JsonValue_type()Expected to always return the following:
However, this method can be useful for debugging and logging (e.g.JsonValue.from("compaction")final JsonField<String>_content()Returns the raw JSON value of content. final JsonField<String>_encryptedContent()Returns the raw JSON value of encryptedContent. final Map<String, JsonValue>_additionalProperties()final BetaCompactionBlock.BuildertoBuilder()final BetaCompactionBlockvalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static BetaCompactionBlock.Builderbuilder()Returns a mutable builder for constructing an instance of BetaCompactionBlock. -
-
Method Detail
-
toParam
final BetaCompactionBlockParam toParam()
-
encryptedContent
final Optional<String> encryptedContent()
Opaque metadata from prior compaction, to be round-tripped verbatim
-
_type
final JsonValue _type()
Expected to always return the following:
JsonValue.from("compaction")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_content
final JsonField<String> _content()
Returns the raw JSON value of content.
Unlike content, this method doesn't throw if the JSON field has an unexpected type.
-
_encryptedContent
final JsonField<String> _encryptedContent()
Returns the raw JSON value of encryptedContent.
Unlike encryptedContent, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final BetaCompactionBlock.Builder toBuilder()
-
validate
final BetaCompactionBlock 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 BetaCompactionBlock.Builder builder()
Returns a mutable builder for constructing an instance of BetaCompactionBlock.
The following fields are required:
.content() .encryptedContent()
-
-
-
-