Skip to main content

MultiAgentOutputConfig

Defined in the feature_configs module.
Configuration for multi-agent output behavior. Consolidates: verbose, stream

Properties

verbose
int
No description available.
stream
bool
No description available.
  • to_dict: Convert to dictionary.

Usage

# Simple preset
    AgentTeam(agents=[...], output="verbose")
    
    # With config
    AgentTeam(
        agents=[...],
        output=MultiAgentOutputConfig(verbose=2, stream=True)
    )