Class: OpenAI::Models::Evals::RunListResponse::ResultCounts
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Evals::RunListResponse::ResultCounts
- Defined in:
- lib/openai/models/evals/run_list_response.rb
Overview
Instance Attribute Summary collapse
-
#errored ⇒ Integer
Number of output items that resulted in an error.
-
#failed ⇒ Integer
Number of output items that failed to pass the evaluation.
-
#passed ⇒ Integer
Number of output items that passed the evaluation.
-
#total ⇒ Integer
Total number of executed output items.
Instance Method Summary collapse
-
#initialize(errored: , failed: , passed: , total: ) ⇒ Object
constructor
Counters summarizing the outcomes of the evaluation run.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, 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
#initialize(errored: , failed: , passed: , total: ) ⇒ Object
Counters summarizing the outcomes of the evaluation run.
|
# File 'lib/openai/models/evals/run_list_response.rb', line 744
|
Instance Attribute Details
#errored ⇒ Integer
Number of output items that resulted in an error.
724 |
# File 'lib/openai/models/evals/run_list_response.rb', line 724 required :errored, Integer |
#failed ⇒ Integer
Number of output items that failed to pass the evaluation.
730 |
# File 'lib/openai/models/evals/run_list_response.rb', line 730 required :failed, Integer |
#passed ⇒ Integer
Number of output items that passed the evaluation.
736 |
# File 'lib/openai/models/evals/run_list_response.rb', line 736 required :passed, Integer |
#total ⇒ Integer
Total number of executed output items.
742 |
# File 'lib/openai/models/evals/run_list_response.rb', line 742 required :total, Integer |