chore: update model lists and defaults to GPT-5.4 family

This commit is contained in:
Yijia-Xiao
2026-03-29 19:45:36 +00:00
parent 6cddd26d6e
commit e75d17bc51
4 changed files with 9 additions and 9 deletions

View File

@@ -189,8 +189,8 @@ from tradingagents.default_config import DEFAULT_CONFIG
config = DEFAULT_CONFIG.copy()
config["llm_provider"] = "openai" # openai, google, anthropic, xai, openrouter, ollama
config["deep_think_llm"] = "gpt-5.2" # Model for complex reasoning
config["quick_think_llm"] = "gpt-5-mini" # Model for quick tasks
config["deep_think_llm"] = "gpt-5.4" # Model for complex reasoning
config["quick_think_llm"] = "gpt-5.4-mini" # Model for quick tasks
config["max_debate_rounds"] = 2
ta = TradingAgentsGraph(debug=True, config=config)