Class: OpenAI::Models::Graders::ScoreModelGrader

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/openai/models/graders/score_model_grader.rb

Defined Under Namespace

Classes: Input

Instance Attribute Summary collapse

Method Summary

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

This class inherits a constructor from OpenAI::Internal::Type::BaseModel

Instance Attribute Details

#inputArray<OpenAI::Models::Graders::ScoreModelGrader::Input>

The input text. This may include template strings.



11
# File 'lib/openai/models/graders/score_model_grader.rb', line 11

required :input, -> { OpenAI::Internal::Type::ArrayOf[OpenAI::Graders::ScoreModelGrader::Input] }

#modelString

The model to use for the evaluation.

Returns:

  • (String)


17
# File 'lib/openai/models/graders/score_model_grader.rb', line 17

required :model, String

#nameString

The name of the grader.

Returns:

  • (String)


23
# File 'lib/openai/models/graders/score_model_grader.rb', line 23

required :name, String

#rangeArray<Float>?

The range of the score. Defaults to ‘[0, 1]`.

Returns:

  • (Array<Float>, nil)


35
# File 'lib/openai/models/graders/score_model_grader.rb', line 35

optional :range, OpenAI::Internal::Type::ArrayOf[Float]

#sampling_paramsObject?

The sampling parameters for the model.

Returns:

  • (Object, nil)


41
# File 'lib/openai/models/graders/score_model_grader.rb', line 41

optional :sampling_params, OpenAI::Internal::Type::Unknown

#typeSymbol, :score_model

The object type, which is always ‘score_model`.

Returns:

  • (Symbol, :score_model)


29
# File 'lib/openai/models/graders/score_model_grader.rb', line 29

required :type, const: :score_model