Class: OpenAI::Models::Beta::BetaResponsesClientEvent::ResponseCreate::MultiAgent
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Beta::BetaResponsesClientEvent::ResponseCreate::MultiAgent
- Defined in:
- lib/openai/models/beta/beta_responses_client_event.rb
Overview
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Whether to enable server-hosted multi-agent execution for this response.
-
#max_concurrent_subagents ⇒ Integer?
max_concurrent_subagentssets the maximum number of subagents that can be active simultaneously across the entire agent tree.
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
#enabled ⇒ Boolean
Whether to enable server-hosted multi-agent execution for this response.
971 |
# File 'lib/openai/models/beta/beta_responses_client_event.rb', line 971 required :enabled, OpenAI::Internal::Type::Boolean |
#max_concurrent_subagents ⇒ Integer?
max_concurrent_subagents sets the maximum number of subagents that can be
active simultaneously across the entire agent tree. It includes all
descendants—children, grandchildren, and deeper subagents—but excludes the root
agent. The API does not impose a fixed upper bound on this setting. The default
is 3, which is recommended for most workloads. Multi-agent runs also have no
fixed limit on tree depth or the total number of subagents created during a run.
982 |
# File 'lib/openai/models/beta/beta_responses_client_event.rb', line 982 optional :max_concurrent_subagents, Integer |