Class: Google::Apis::CesV1::EvaluationMetricsThresholdsGoldenEvaluationMetricsThresholds
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::EvaluationMetricsThresholdsGoldenEvaluationMetricsThresholds
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ces_v1/classes.rb,
lib/google/apis/ces_v1/representations.rb,
lib/google/apis/ces_v1/representations.rb
Overview
Settings for golden evaluations.
Instance Attribute Summary collapse
-
#expectation_level_metrics_thresholds ⇒ Google::Apis::CesV1::EvaluationMetricsThresholdsGoldenEvaluationMetricsThresholdsExpectationLevelMetricsThresholds
Expectation level metrics thresholds.
-
#tool_matching_settings ⇒ Google::Apis::CesV1::EvaluationMetricsThresholdsToolMatchingSettings
Settings for matching tool calls.
-
#turn_level_metrics_thresholds ⇒ Google::Apis::CesV1::EvaluationMetricsThresholdsGoldenEvaluationMetricsThresholdsTurnLevelMetricsThresholds
Turn level metrics thresholds.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EvaluationMetricsThresholdsGoldenEvaluationMetricsThresholds
constructor
A new instance of EvaluationMetricsThresholdsGoldenEvaluationMetricsThresholds.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EvaluationMetricsThresholdsGoldenEvaluationMetricsThresholds
Returns a new instance of EvaluationMetricsThresholdsGoldenEvaluationMetricsThresholds.
3104 3105 3106 |
# File 'lib/google/apis/ces_v1/classes.rb', line 3104 def initialize(**args) update!(**args) end |
Instance Attribute Details
#expectation_level_metrics_thresholds ⇒ Google::Apis::CesV1::EvaluationMetricsThresholdsGoldenEvaluationMetricsThresholdsExpectationLevelMetricsThresholds
Expectation level metrics thresholds.
Corresponds to the JSON property expectationLevelMetricsThresholds
3092 3093 3094 |
# File 'lib/google/apis/ces_v1/classes.rb', line 3092 def expectation_level_metrics_thresholds @expectation_level_metrics_thresholds end |
#tool_matching_settings ⇒ Google::Apis::CesV1::EvaluationMetricsThresholdsToolMatchingSettings
Settings for matching tool calls.
Corresponds to the JSON property toolMatchingSettings
3097 3098 3099 |
# File 'lib/google/apis/ces_v1/classes.rb', line 3097 def tool_matching_settings @tool_matching_settings end |
#turn_level_metrics_thresholds ⇒ Google::Apis::CesV1::EvaluationMetricsThresholdsGoldenEvaluationMetricsThresholdsTurnLevelMetricsThresholds
Turn level metrics thresholds.
Corresponds to the JSON property turnLevelMetricsThresholds
3102 3103 3104 |
# File 'lib/google/apis/ces_v1/classes.rb', line 3102 def turn_level_metrics_thresholds @turn_level_metrics_thresholds end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3109 3110 3111 3112 3113 |
# File 'lib/google/apis/ces_v1/classes.rb', line 3109 def update!(**args) @expectation_level_metrics_thresholds = args[:expectation_level_metrics_thresholds] if args.key?(:expectation_level_metrics_thresholds) @tool_matching_settings = args[:tool_matching_settings] if args.key?(:tool_matching_settings) @turn_level_metrics_thresholds = args[:turn_level_metrics_thresholds] if args.key?(:turn_level_metrics_thresholds) end |