fix: undo change and add 2 gpu

This commit is contained in:
Ivan Lee 2025-08-17 21:18:30 +08:00
parent c300cc2819
commit 6418d1a906
2 changed files with 6 additions and 2 deletions

View File

@ -6,7 +6,7 @@
#SBATCH --partition=gpu
#SBATCH --ntasks=1
#SBATCH --cpus-per-task=4
#SBATCH --gpus=h100-96:1
#SBATCH --gpus=h100-96:2
#SBATCH --mem=96G
# Run the script

View File

@ -96,7 +96,11 @@ class TradingAgentsGraph:
trust_remote_code=True,
tensor_parallel_size=1,
)
self.quick_thinking_llm = self.deep_thinking_llm
self.quick_thinking_llm = VLLM(
model=self.config["quick_think_llm"],
trust_remote_code=True,
tensor_parallel_size=1,
)
else:
raise ValueError(f"Unsupported LLM provider: {self.config['llm_provider']}")