From 6ae18e9ff25819a1ea107a55b8a766211af94b1d Mon Sep 17 00:00:00 2001 From: Arye Kogan Date: Fri, 26 Sep 2025 12:14:15 +0000 Subject: [PATCH] default rounds to 3 --- tradingagents/default_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tradingagents/default_config.py b/tradingagents/default_config.py index 089e9c24..c0bca9d9 100644 --- a/tradingagents/default_config.py +++ b/tradingagents/default_config.py @@ -14,8 +14,8 @@ DEFAULT_CONFIG = { "quick_think_llm": "gpt-4o-mini", "backend_url": "https://api.openai.com/v1", # Debate and discussion settings - "max_debate_rounds": 1, - "max_risk_discuss_rounds": 1, + "max_debate_rounds": 3, + "max_risk_discuss_rounds": 3, "max_recur_limit": 100, # Tool settings "online_tools": True,