# Increase rate limit for multi-agent systems

with open('/Eden/CORE/agent_loop_v2.py', 'r') as f:
    content = f.read()

# Change from 20 to 100 actions per hour
content = content.replace(
    'self.max_actions_per_hour = 20',
    'self.max_actions_per_hour = 100'
)

with open('/Eden/CORE/agent_loop_v2.py', 'w') as f:
    f.write(content)

print("✅ Rate limit increased: 20 → 100 actions/hour")
