Class: Aws::Bedrock::Types::TeacherModelConfig

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

Overview

Details about a teacher model used for model customization.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_response_length_for_inferenceInteger

The maximum number of tokens requested when the customization job invokes the teacher model.

Returns:

  • (Integer)


6787
6788
6789
6790
6791
6792
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 6787

class TeacherModelConfig < Struct.new(
  :teacher_model_identifier,
  :max_response_length_for_inference)
  SENSITIVE = []
  include Aws::Structure
end

#teacher_model_identifierString

The identifier of the teacher model.

Returns:

  • (String)


6787
6788
6789
6790
6791
6792
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 6787

class TeacherModelConfig < Struct.new(
  :teacher_model_identifier,
  :max_response_length_for_inference)
  SENSITIVE = []
  include Aws::Structure
end