Update tradingagents/graph/trading_graph.py

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
This commit is contained in:
robinsxe 2026-03-24 21:07:02 +01:00 committed by GitHub
parent 698b4ede4a
commit f3d49335d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ class TradingAgentsGraph:
self.propagator = Propagator()
self.reflector = Reflector(self.quick_thinking_llm)
self.signal_processor = SignalProcessor(self.quick_thinking_llm)
self.portfolio_analyzer = PortfolioAnalyzer(self.deep_thinking_llm)
self.portfolio_analyzer = PortfolioAnalyzer(self.deep_thinking_llm, self.config)
# State tracking
self.curr_state = None