Class CategoricalRatingOption
(experimental) A categorical rating scale option for custom evaluators.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock.Agentcore.Alpha
Assembly: Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.dll
Syntax (csharp)
public class CategoricalRatingOption : ICategoricalRatingOption
Syntax (vb)
Public Class CategoricalRatingOption Implements ICategoricalRatingOption
Remarks
Categorical scales define discrete labels for scoring agent performance.
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock.Agentcore.Alpha;
var categoricalRatingOption = new CategoricalRatingOption {
Definition = "definition",
Label = "label"
};
Synopsis
Constructors
| CategoricalRatingOption() | (experimental) A categorical rating scale option for custom evaluators. |
Properties
| Definition | (experimental) The description that explains what this rating represents. |
| Label | (experimental) The label for this rating option. |
Constructors
CategoricalRatingOption()
(experimental) A categorical rating scale option for custom evaluators.
public CategoricalRatingOption()
Remarks
Categorical scales define discrete labels for scoring agent performance.
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock.Agentcore.Alpha;
var categoricalRatingOption = new CategoricalRatingOption {
Definition = "definition",
Label = "label"
};
Properties
Definition
(experimental) The description that explains what this rating represents.
public string Definition { get; set; }
Property Value
Remarks
Stability: Experimental
Examples
"The response fully addresses the user query with accurate information.";
Label
(experimental) The label for this rating option.
public string Label { get; set; }
Property Value
Remarks
Stability: Experimental
Examples
"Good";