From c300cc28199a8270dd937c9f048ffd2629a9e083 Mon Sep 17 00:00:00 2001 From: Ivan Lee <84584280+ivanleekk@users.noreply.github.com> Date: Sun, 17 Aug 2025 21:15:55 +0800 Subject: [PATCH] use same model --- tradingagents/graph/trading_graph.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tradingagents/graph/trading_graph.py b/tradingagents/graph/trading_graph.py index fe9b9f6c..0fe3239c 100644 --- a/tradingagents/graph/trading_graph.py +++ b/tradingagents/graph/trading_graph.py @@ -96,11 +96,7 @@ class TradingAgentsGraph: trust_remote_code=True, tensor_parallel_size=1, ) - self.quick_thinking_llm = VLLM( - model=self.config["quick_think_llm"], - trust_remote_code=True, - tensor_parallel_size=1, - ) + self.quick_thinking_llm = self.deep_thinking_llm else: raise ValueError(f"Unsupported LLM provider: {self.config['llm_provider']}")