mirror of
https://github.com/TauricResearch/TradingAgents.git
synced 2026-09-27 15:02:39 +03:00
refactor: one name per decision in the state and its log
- the Research Manager's plan and the Portfolio Manager's decision live only in investment_plan and final_trade_decision; the debate states no longer copy them as judge_decision - the saved state log writes the Trader's plan as trader_investment_plan, its state key - the report tree, the final display and the live CLI read the decisions from those fields
This commit is contained in:
@@ -13,9 +13,11 @@ def _state():
|
||||
return {
|
||||
"market_report": "MKT",
|
||||
"news_report": "NEWS",
|
||||
"investment_debate_state": {"judge_decision": "RM PLAN"},
|
||||
"investment_debate_state": {"bull_history": "BULL"},
|
||||
"investment_plan": "RM PLAN",
|
||||
"trader_investment_plan": "TRADE",
|
||||
"risk_debate_state": {"judge_decision": "PM DECISION"},
|
||||
"risk_debate_state": {"neutral_history": "NEUTRAL"},
|
||||
"final_trade_decision": "PM DECISION",
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user