Class: Aws::BedrockAgentCoreControl::Types::EvaluatorConfig

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

Overview

Note:

EvaluatorConfig is a union - when making an API calls you must set exactly one of the members.

Note:

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

LlmAsAJudge, Unknown

Defined Under Namespace

Classes: LlmAsAJudge, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#llm_as_a_judgeTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3614
3615
3616
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3614

def unknown
  @unknown
end