Class: OpenAI::Models::Beta::BetaResponseItem::MultiAgentCallOutput
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Beta::BetaResponseItem::MultiAgentCallOutput
- Defined in:
- lib/openai/models/beta/beta_response_item.rb
Defined Under Namespace
Modules: Action Classes: Agent
Instance Attribute Summary collapse
-
#action ⇒ Symbol, OpenAI::Models::Beta::BetaResponseItem::MultiAgentCallOutput::Action
The multi-agent action that produced this result.
-
#agent ⇒ OpenAI::Models::Beta::BetaResponseItem::MultiAgentCallOutput::Agent?
The agent that produced this item.
-
#call_id ⇒ String
The unique ID of the multi-agent call.
-
#id ⇒ String
The unique ID of the multi-agent call output item.
-
#output ⇒ Array<OpenAI::Models::Beta::BetaResponseOutputText>
Text output returned by the multi-agent action.
-
#type ⇒ Symbol, :multi_agent_call_output
The type of the multi-agent result.
Class Method Summary collapse
Instance Method Summary collapse
- #initialize(id:, action:, call_id:, output:, agent: nil, type: :multi_agent_call_output) ⇒ Object constructor
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, 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
#initialize(id:, action:, call_id:, output:, agent: nil, type: :multi_agent_call_output) ⇒ Object
|
|
# File 'lib/openai/models/beta/beta_response_item.rb', line 499
|
Instance Attribute Details
#action ⇒ Symbol, OpenAI::Models::Beta::BetaResponseItem::MultiAgentCallOutput::Action
The multi-agent action that produced this result.
473 |
# File 'lib/openai/models/beta/beta_response_item.rb', line 473 required :action, enum: -> { OpenAI::Beta::BetaResponseItem::MultiAgentCallOutput::Action } |
#agent ⇒ OpenAI::Models::Beta::BetaResponseItem::MultiAgentCallOutput::Agent?
The agent that produced this item.
497 |
# File 'lib/openai/models/beta/beta_response_item.rb', line 497 optional :agent, -> { OpenAI::Beta::BetaResponseItem::MultiAgentCallOutput::Agent } |
#call_id ⇒ String
The unique ID of the multi-agent call.
479 |
# File 'lib/openai/models/beta/beta_response_item.rb', line 479 required :call_id, String |
#id ⇒ String
The unique ID of the multi-agent call output item.
467 |
# File 'lib/openai/models/beta/beta_response_item.rb', line 467 required :id, String |
#output ⇒ Array<OpenAI::Models::Beta::BetaResponseOutputText>
Text output returned by the multi-agent action.
485 |
# File 'lib/openai/models/beta/beta_response_item.rb', line 485 required :output, -> { OpenAI::Internal::Type::ArrayOf[OpenAI::Beta::BetaResponseOutputText] } |
#type ⇒ Symbol, :multi_agent_call_output
The type of the multi-agent result. Always multi_agent_call_output.
491 |
# File 'lib/openai/models/beta/beta_response_item.rb', line 491 required :type, const: :multi_agent_call_output |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/openai/models/beta/beta_response_item.rb', line 525
|