Class: Aws::BedrockAgent::Types::PromptOverrideConfiguration

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

Overview

Contains configurations to override prompts in different parts of an agent sequence. For more information, see Advanced prompts.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#override_lambdaString

The ARN of the Lambda function to use when parsing the raw foundation model output in parts of the agent sequence. If you specify this field, at least one of the promptConfigurations must contain a parserMode value that is set to OVERRIDDEN.

Returns:

  • (String)


3345
3346
3347
3348
3349
3350
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3345

class PromptOverrideConfiguration < Struct.new(
  :override_lambda,
  :prompt_configurations)
  SENSITIVE = []
  include Aws::Structure
end

#prompt_configurationsArray<Types::PromptConfiguration>

Contains configurations to override a prompt template in one part of an agent sequence. For more information, see Advanced prompts.

Returns:



3345
3346
3347
3348
3349
3350
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3345

class PromptOverrideConfiguration < Struct.new(
  :override_lambda,
  :prompt_configurations)
  SENSITIVE = []
  include Aws::Structure
end