Class: Aws::Bedrock::Types::EvaluationInferenceConfig

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

Overview

Note:

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

Note:

EvaluationInferenceConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EvaluationInferenceConfig corresponding to the set member.

Used to define the models you want used in your model evaluation job. Automated model evaluation jobs support only a single model. In a human-based model evaluation job, your annotator can compare the responses for up to two different models.

Direct Known Subclasses

Models, Unknown

Defined Under Namespace

Classes: Models, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#modelsArray<Types::EvaluationModelConfig>

Used to specify the models.

Returns:



794
795
796
797
798
799
800
801
802
803
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 794

class EvaluationInferenceConfig < Struct.new(
  :models,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Models < EvaluationInferenceConfig; end
  class Unknown < EvaluationInferenceConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



794
795
796
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 794

def unknown
  @unknown
end