Class: Aws::BedrockAgentCoreControl::Types::EvaluatorConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::EvaluatorConfig
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
EvaluatorConfig is a union - when making an API calls you must set exactly one of the members.
EvaluatorConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EvaluatorConfig corresponding to the set member.
The configuration that defines how an evaluator assesses agent performance, including the evaluation method and parameters.
Direct Known Subclasses
Defined Under Namespace
Classes: LlmAsAJudge, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#llm_as_a_judge ⇒ Types::LlmAsAJudgeEvaluatorConfig
The LLM-as-a-Judge configuration that uses a language model to evaluate agent performance based on custom instructions and rating scales.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#llm_as_a_judge ⇒ Types::LlmAsAJudgeEvaluatorConfig
The LLM-as-a-Judge configuration that uses a language model to evaluate agent performance based on custom instructions and rating scales.
3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3614 class EvaluatorConfig < Struct.new( :llm_as_a_judge, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class LlmAsAJudge < EvaluatorConfig; end class Unknown < EvaluatorConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3614 3615 3616 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3614 def unknown @unknown end |