Class: OpenAI::Models::Evals::RunCreateParams::DataSource::CreateEvalResponsesRunDataSource::Source::Responses
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Evals::RunCreateParams::DataSource::CreateEvalResponsesRunDataSource::Source::Responses
- Defined in:
- lib/openai/models/evals/run_create_params.rb
Instance Attribute Summary collapse
-
#created_after ⇒ Integer?
Only include items created after this timestamp (inclusive).
-
#created_before ⇒ Integer?
Only include items created before this timestamp (inclusive).
-
#instructions_search ⇒ String?
Optional string to search the ‘instructions’ field.
-
#metadata ⇒ Object?
Metadata filter for the responses.
-
#model ⇒ String?
The name of the model to find responses for.
-
#reasoning_effort ⇒ Symbol, ...
Constrains effort on reasoning for [reasoning models](platform.openai.com/docs/guides/reasoning).
-
#temperature ⇒ Float?
Sampling temperature.
-
#tools ⇒ Array<String>?
List of tool names.
-
#top_p ⇒ Float?
Nucleus sampling parameter.
-
#type ⇒ Symbol, :responses
The type of run data source.
-
#users ⇒ Array<String>?
List of user identifiers.
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, meta_info, new_coerce_state, 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
#created_after ⇒ Integer?
Only include items created after this timestamp (inclusive). This is a query parameter used to select responses.
198 |
# File 'lib/openai/models/evals/run_create_params.rb', line 198 optional :created_after, Integer, nil?: true |
#created_before ⇒ Integer?
Only include items created before this timestamp (inclusive). This is a query parameter used to select responses.
205 |
# File 'lib/openai/models/evals/run_create_params.rb', line 205 optional :created_before, Integer, nil?: true |
#instructions_search ⇒ String?
Optional string to search the ‘instructions’ field. This is a query parameter used to select responses.
212 |
# File 'lib/openai/models/evals/run_create_params.rb', line 212 optional :instructions_search, String, nil?: true |
#metadata ⇒ Object?
Metadata filter for the responses. This is a query parameter used to select responses.
219 |
# File 'lib/openai/models/evals/run_create_params.rb', line 219 optional :metadata, OpenAI::Internal::Type::Unknown, nil?: true |
#model ⇒ String?
The name of the model to find responses for. This is a query parameter used to select responses.
226 |
# File 'lib/openai/models/evals/run_create_params.rb', line 226 optional :model, String, nil?: true |
#reasoning_effort ⇒ Symbol, ...
Constrains effort on reasoning for [reasoning models](platform.openai.com/docs/guides/reasoning). Currently supported values are ‘none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
-
‘gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
-
All models before ‘gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
-
The ‘gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
-
‘xhigh` is supported for all models after `gpt-5.1-codex-max`.
244 |
# File 'lib/openai/models/evals/run_create_params.rb', line 244 optional :reasoning_effort, enum: -> { OpenAI::ReasoningEffort }, nil?: true |
#temperature ⇒ Float?
Sampling temperature. This is a query parameter used to select responses.
250 |
# File 'lib/openai/models/evals/run_create_params.rb', line 250 optional :temperature, Float, nil?: true |
#tools ⇒ Array<String>?
List of tool names. This is a query parameter used to select responses.
256 |
# File 'lib/openai/models/evals/run_create_params.rb', line 256 optional :tools, OpenAI::Internal::Type::ArrayOf[String], nil?: true |
#top_p ⇒ Float?
Nucleus sampling parameter. This is a query parameter used to select responses.
262 |
# File 'lib/openai/models/evals/run_create_params.rb', line 262 optional :top_p, Float, nil?: true |
#type ⇒ Symbol, :responses
The type of run data source. Always ‘responses`.
191 |
# File 'lib/openai/models/evals/run_create_params.rb', line 191 required :type, const: :responses |