Skip to main content

MultiAgentOutputConfig

Defined in the Feature Configs module.
AI Agent 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
    AgentManager(agents=[...], output="verbose")
    
    # With config
    AgentManager(
        agents=[...],
        output=MultiAgentOutputConfig(verbose=2, stream=True)
    )

Source

View on GitHub

praisonaiagents/config/feature_configs.py at line 814