Class: Aws::BedrockAgentCoreControl::Types::EpisodicExtractionOverride

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb

Overview

Contains configurations to override the default extraction step for the episodic memory strategy.

Constant Summary collapse

SENSITIVE =
[:append_to_prompt]

Instance Attribute Summary collapse

Instance Attribute Details

#append_to_promptString

The text appended to the prompt for the extraction step of the episodic memory strategy.

Returns:

  • (String)


3404
3405
3406
3407
3408
3409
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3404

class EpisodicExtractionOverride < Struct.new(
  :append_to_prompt,
  :model_id)
  SENSITIVE = [:append_to_prompt]
  include Aws::Structure
end

#model_idString

The model ID used for the extraction step of the episodic memory strategy.

Returns:

  • (String)


3404
3405
3406
3407
3408
3409
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3404

class EpisodicExtractionOverride < Struct.new(
  :append_to_prompt,
  :model_id)
  SENSITIVE = [:append_to_prompt]
  include Aws::Structure
end