refactor: move the decision log to tradingagents/decision_log.py

- it is the run's persistent record, used by the graph, backtest and CLI, not an agent utility; agents/utils is gone
This commit is contained in:
Yijia-Xiao
2026-09-24 05:00:36 +00:00
parent dcbff5ea42
commit e7354d8af4
9 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -10,8 +10,8 @@ from __future__ import annotations
import pytest
from tradingagents.agents.utils.memory import TradingMemoryLog
from tradingagents.backtest import iter_grid, run_backtest, summarize
from tradingagents.decision_log import TradingMemoryLog
DECISION = "Rating: Buy\n\nbuy it"