Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CompactionConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CompactionConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Configuration for session compaction. Compaction has two independent categories that may be enabled individually or together. When both are enabled they run as a stackable pipeline (deterministic event editing first, then summarization if the session is still above the target). At least one category must be enabled; a config with neither is rejected (enforced server-side). This message is standalone so it can be reused across surfaces (e.g. on the compact request today, and on session creation for a future reactive trigger).
Instance Attribute Summary collapse
-
#event_editing ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CompactionConfigEventEditingConfig
Configuration for event-history editing-based compaction.
-
#summarization ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CompactionConfigLlmSummarizationConfig
Configuration for LLM summarization-based compaction.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1CompactionConfig
constructor
A new instance of GoogleCloudAiplatformV1beta1CompactionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1CompactionConfig
Returns a new instance of GoogleCloudAiplatformV1beta1CompactionConfig.
12657 12658 12659 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12657 def initialize(**args) update!(**args) end |
Instance Attribute Details
#event_editing ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CompactionConfigEventEditingConfig
Configuration for event-history editing-based compaction. When set, the event
history is rewritten in place using deterministic rules (e.g. truncating/
masking oversized tool responses, stripping model thoughts).
Corresponds to the JSON property eventEditing
12648 12649 12650 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12648 def event_editing @event_editing end |
#summarization ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CompactionConfigLlmSummarizationConfig
Configuration for LLM summarization-based compaction. When set, the session
context is summarized with an LLM once it exceeds the summarizer target
threshold.
Corresponds to the JSON property summarization
12655 12656 12657 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12655 def summarization @summarization end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12662 12663 12664 12665 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12662 def update!(**args) @event_editing = args[:event_editing] if args.key?(:event_editing) @summarization = args[:summarization] if args.key?(:summarization) end |