Class: OpenAI::Models::Evals::Runs::OutputItemRetrieveResponse
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Evals::Runs::OutputItemRetrieveResponse
- Defined in:
- lib/openai/models/evals/runs/output_item_retrieve_response.rb
Overview
Defined Under Namespace
Classes: Sample
Instance Attribute Summary collapse
-
#created_at ⇒ Integer
Unix timestamp (in seconds) when the evaluation run was created.
-
#datasource_item ⇒ Hash{Symbol=>Object}
Details of the input data source item.
-
#datasource_item_id ⇒ Integer
The identifier for the data source item.
-
#eval_id ⇒ String
The identifier of the evaluation group.
-
#id ⇒ String
Unique identifier for the evaluation run output item.
-
#object ⇒ Symbol, :"eval.run.output_item"
The type of the object.
-
#results ⇒ Array<Hash{Symbol=>Object}>
A list of results from the evaluation run.
-
#run_id ⇒ String
The identifier of the evaluation run associated with this output item.
-
#sample ⇒ OpenAI::Models::Evals::Runs::OutputItemRetrieveResponse::Sample
A sample containing the input and output of the evaluation run.
-
#status ⇒ String
The status of the evaluation run.
Instance Method Summary collapse
-
#initialize(id: , created_at: , datasource_item: , datasource_item_id: , eval_id: , results: , run_id: , sample: , status: , object: :"eval.run.output_item") ⇒ Object
constructor
A schema representing an evaluation run output item.
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(id: , created_at: , datasource_item: , datasource_item_id: , eval_id: , results: , run_id: , sample: , status: , object: :"eval.run.output_item") ⇒ Object
A schema representing an evaluation run output item.
|
# File 'lib/openai/models/evals/runs/output_item_retrieve_response.rb', line 70
|
Instance Attribute Details
#created_at ⇒ Integer
Unix timestamp (in seconds) when the evaluation run was created.
19 |
# File 'lib/openai/models/evals/runs/output_item_retrieve_response.rb', line 19 required :created_at, Integer |
#datasource_item ⇒ Hash{Symbol=>Object}
Details of the input data source item.
25 |
# File 'lib/openai/models/evals/runs/output_item_retrieve_response.rb', line 25 required :datasource_item, OpenAI::Internal::Type::HashOf[OpenAI::Internal::Type::Unknown] |
#datasource_item_id ⇒ Integer
The identifier for the data source item.
31 |
# File 'lib/openai/models/evals/runs/output_item_retrieve_response.rb', line 31 required :datasource_item_id, Integer |
#eval_id ⇒ String
The identifier of the evaluation group.
37 |
# File 'lib/openai/models/evals/runs/output_item_retrieve_response.rb', line 37 required :eval_id, String |
#id ⇒ String
Unique identifier for the evaluation run output item.
13 |
# File 'lib/openai/models/evals/runs/output_item_retrieve_response.rb', line 13 required :id, String |
#object ⇒ Symbol, :"eval.run.output_item"
The type of the object. Always “eval.run.output_item”.
43 |
# File 'lib/openai/models/evals/runs/output_item_retrieve_response.rb', line 43 required :object, const: :"eval.run.output_item" |
#results ⇒ Array<Hash{Symbol=>Object}>
A list of results from the evaluation run.
49 50 |
# File 'lib/openai/models/evals/runs/output_item_retrieve_response.rb', line 49 required :results, OpenAI::Internal::Type::ArrayOf[OpenAI::Internal::Type::HashOf[OpenAI::Internal::Type::Unknown]] |
#run_id ⇒ String
The identifier of the evaluation run associated with this output item.
56 |
# File 'lib/openai/models/evals/runs/output_item_retrieve_response.rb', line 56 required :run_id, String |
#sample ⇒ OpenAI::Models::Evals::Runs::OutputItemRetrieveResponse::Sample
A sample containing the input and output of the evaluation run.
62 |
# File 'lib/openai/models/evals/runs/output_item_retrieve_response.rb', line 62 required :sample, -> { OpenAI::Models::Evals::Runs::OutputItemRetrieveResponse::Sample } |
#status ⇒ String
The status of the evaluation run.
68 |
# File 'lib/openai/models/evals/runs/output_item_retrieve_response.rb', line 68 required :status, String |