Skip to main content

ExecutionConfig

Defined in the feature_configs module.
Configuration for agent execution limits. Consolidates: max_iter, max_rpm, max_execution_time, max_retry_limit

Properties

max_iter
int
No description available.
max_rpm
Optional
No description available.
max_execution_time
Optional
No description available.
max_retry_limit
int
No description available.
  • to_dict: Convert to dictionary.

Usage

# Simple preset
    Agent(execution="thorough")
    
    # With config
    Agent(execution=ExecutionConfig(
        max_iter=50,
        max_rpm=100,
        max_execution_time=300,
        max_retry_limit=5,
    ))