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 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 Map<String, JsonValue>_additionalProperties()final BetaCompactionBlock.BuildertoBuilder()final BetaCompactionBlockvalidate()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()
-
_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.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final BetaCompactionBlock.Builder toBuilder()
-
validate
final BetaCompactionBlock validate()
-
builder
final static BetaCompactionBlock.Builder builder()
Returns a mutable builder for constructing an instance of BetaCompactionBlock.
The following fields are required:
.content()
-
-
-
-