Class BetaCompactionBlockParam
-
- All Implemented Interfaces:
public final class BetaCompactionBlockParamA compaction block containing summary of previous context.
Users should round-trip these blocks from responses to subsequent requests to maintain context across compaction boundaries.
When content is None, the block represents a failed compaction. The server treats these as no-ops. Empty string content is not allowed.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classBetaCompactionBlockParam.BuilderA builder for BetaCompactionBlockParam.
-
Method Summary
Modifier and Type Method Description final Optional<String>content()Summary of previously 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 Optional<BetaCacheControlEphemeral>cacheControl()Create a cache control breakpoint at this content block. final JsonField<String>_content()Returns the raw JSON value of content. final JsonField<BetaCacheControlEphemeral>_cacheControl()Returns the raw JSON value of cacheControl. final Map<String, JsonValue>_additionalProperties()final BetaCompactionBlockParam.BuildertoBuilder()final BetaCompactionBlockParamvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static BetaCompactionBlockParam.Builderbuilder()Returns a mutable builder for constructing an instance of BetaCompactionBlockParam. -
-
Method Detail
-
content
final Optional<String> content()
Summary of previously compacted content, or null if compaction failed
-
_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).
-
cacheControl
final Optional<BetaCacheControlEphemeral> cacheControl()
Create a cache control breakpoint at this content block.
-
_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.
-
_cacheControl
final JsonField<BetaCacheControlEphemeral> _cacheControl()
Returns the raw JSON value of cacheControl.
Unlike cacheControl, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final BetaCompactionBlockParam.Builder toBuilder()
-
validate
final BetaCompactionBlockParam validate()
-
builder
final static BetaCompactionBlockParam.Builder builder()
Returns a mutable builder for constructing an instance of BetaCompactionBlockParam.
The following fields are required:
.content()
-
-
-
-