diff --git a/cli/main.py b/cli/main.py index 4ffc8049..334dffd6 100644 --- a/cli/main.py +++ b/cli/main.py @@ -58,9 +58,9 @@ class MessageBuffer: # Trading Team "Trader": "pending", # Risk Management Team - "Risky Analyst": "pending", + "Aggressive Analyst": "pending", "Neutral Analyst": "pending", - "Safe Analyst": "pending", + "Conservative Analyst": "pending", # Portfolio Management Team "Portfolio Manager": "pending", } @@ -227,7 +227,7 @@ def update_display(layout, spinner_text=None): ], "Research Team": ["Bull Researcher", "Bear Researcher", "Research Manager"], "Trading Team": ["Trader"], - "Risk Management": ["Risky Analyst", "Neutral Analyst", "Safe Analyst"], + "Risk Management": ["Aggressive Analyst", "Neutral Analyst", "Conservative Analyst"], "Portfolio Management": ["Portfolio Manager"], } @@ -675,10 +675,10 @@ def display_complete_report(final_state): risk_state = final_state["risk_debate_state"] # Aggressive (Risky) Analyst Analysis - if risk_state.get("risky_history"): + if risk_state.get("aggressive_history"): risk_reports.append( Panel( - Markdown(risk_state["risky_history"]), + Markdown(risk_state["aggressive_history"]), title="Aggressive Analyst", border_style="blue", padding=(1, 2), @@ -686,10 +686,10 @@ def display_complete_report(final_state): ) # Conservative (Safe) Analyst Analysis - if risk_state.get("safe_history"): + if risk_state.get("conservative_history"): risk_reports.append( Panel( - Markdown(risk_state["safe_history"]), + Markdown(risk_state["conservative_history"]), title="Conservative Analyst", border_style="blue", padding=(1, 2), @@ -1009,7 +1009,7 @@ def run_analysis(): update_research_team_status("completed") # Set first risk analyst to in_progress message_buffer.update_agent_status( - "Risky Analyst", "in_progress" + "Aggressive Analyst", "in_progress" ) # Trading Team @@ -1021,46 +1021,46 @@ def run_analysis(): "trader_investment_plan", chunk["trader_investment_plan"] ) # Set first risk analyst to in_progress - message_buffer.update_agent_status("Risky Analyst", "in_progress") + message_buffer.update_agent_status("Aggressive Analyst", "in_progress") # Risk Management Team - Handle Risk Debate State if "risk_debate_state" in chunk and chunk["risk_debate_state"]: risk_state = chunk["risk_debate_state"] - # Update Risky Analyst status and report + # Update Aggressive Analyst status and report if ( - "current_risky_response" in risk_state - and risk_state["current_risky_response"] + "current_aggressive_response" in risk_state + and risk_state["current_aggressive_response"] ): message_buffer.update_agent_status( - "Risky Analyst", "in_progress" + "Aggressive Analyst", "in_progress" ) message_buffer.add_message( "Reasoning", - f"Risky Analyst: {risk_state['current_risky_response']}", + f"Aggressive Analyst: {risk_state['current_aggressive_response']}", ) - # Update risk report with risky analyst's latest analysis only + # Update risk report with aggressive analyst's latest analysis only message_buffer.update_report_section( "final_trade_decision", - f"### Risky Analyst Analysis\n{risk_state['current_risky_response']}", + f"### Aggressive Analyst Analysis\n{risk_state['current_aggressive_response']}", ) - # Update Safe Analyst status and report + # Update Conservative Analyst status and report if ( - "current_safe_response" in risk_state - and risk_state["current_safe_response"] + "current_conservative_response" in risk_state + and risk_state["current_conservative_response"] ): message_buffer.update_agent_status( - "Safe Analyst", "in_progress" + "Conservative Analyst", "in_progress" ) message_buffer.add_message( "Reasoning", - f"Safe Analyst: {risk_state['current_safe_response']}", + f"Conservative Analyst: {risk_state['current_conservative_response']}", ) - # Update risk report with safe analyst's latest analysis only + # Update risk report with conservative analyst's latest analysis only message_buffer.update_report_section( "final_trade_decision", - f"### Safe Analyst Analysis\n{risk_state['current_safe_response']}", + f"### Conservative Analyst Analysis\n{risk_state['current_conservative_response']}", ) # Update Neutral Analyst status and report @@ -1096,8 +1096,8 @@ def run_analysis(): f"### Portfolio Manager Decision\n{risk_state['judge_decision']}", ) # Mark risk analysts as completed - message_buffer.update_agent_status("Risky Analyst", "completed") - message_buffer.update_agent_status("Safe Analyst", "completed") + message_buffer.update_agent_status("Aggressive Analyst", "completed") + message_buffer.update_agent_status("Conservative Analyst", "completed") message_buffer.update_agent_status( "Neutral Analyst", "completed" ) diff --git a/main.py b/main.py index a85ee6ec..1ea7e7d3 100644 --- a/main.py +++ b/main.py @@ -8,8 +8,8 @@ load_dotenv() # Create a custom config config = DEFAULT_CONFIG.copy() -config["deep_think_llm"] = "gpt-4o-mini" # Use a different model -config["quick_think_llm"] = "gpt-4o-mini" # Use a different model +config["deep_think_llm"] = "gpt-5-mini" # Use a different model +config["quick_think_llm"] = "gpt-5-mini" # Use a different model config["max_debate_rounds"] = 1 # Increase debate rounds # Configure data vendors (default uses yfinance and alpha_vantage) diff --git a/tradingagents/agents/__init__.py b/tradingagents/agents/__init__.py index d84d9eb1..8a169f22 100644 --- a/tradingagents/agents/__init__.py +++ b/tradingagents/agents/__init__.py @@ -10,8 +10,8 @@ from .analysts.social_media_analyst import create_social_media_analyst from .researchers.bear_researcher import create_bear_researcher from .researchers.bull_researcher import create_bull_researcher -from .risk_mgmt.aggresive_debator import create_risky_debator -from .risk_mgmt.conservative_debator import create_safe_debator +from .risk_mgmt.aggressive_debator import create_aggressive_debator +from .risk_mgmt.conservative_debator import create_conservative_debator from .risk_mgmt.neutral_debator import create_neutral_debator from .managers.research_manager import create_research_manager @@ -32,9 +32,9 @@ __all__ = [ "create_market_analyst", "create_neutral_debator", "create_news_analyst", - "create_risky_debator", + "create_aggressive_debator", "create_risk_manager", - "create_safe_debator", + "create_conservative_debator", "create_social_media_analyst", "create_trader", ] diff --git a/tradingagents/agents/managers/risk_manager.py b/tradingagents/agents/managers/risk_manager.py index fba763d6..9ed03e2d 100644 --- a/tradingagents/agents/managers/risk_manager.py +++ b/tradingagents/agents/managers/risk_manager.py @@ -22,7 +22,7 @@ def create_risk_manager(llm, memory): for i, rec in enumerate(past_memories, 1): past_memory_str += rec["recommendation"] + "\n\n" - prompt = f"""As the Risk Management Judge and Debate Facilitator, your goal is to evaluate the debate between three risk analysts—Risky, Neutral, and Safe/Conservative—and determine the best course of action for the trader. Your decision must result in a clear recommendation: Buy, Sell, or Hold. Choose Hold only if strongly justified by specific arguments, not as a fallback when all sides seem valid. Strive for clarity and decisiveness. + prompt = f"""As the Risk Management Judge and Debate Facilitator, your goal is to evaluate the debate between three risk analysts—Aggressive, Neutral, and Conservative—and determine the best course of action for the trader. Your decision must result in a clear recommendation: Buy, Sell, or Hold. Choose Hold only if strongly justified by specific arguments, not as a fallback when all sides seem valid. Strive for clarity and decisiveness. Guidelines for Decision-Making: 1. **Summarize Key Arguments**: Extract the strongest points from each analyst, focusing on relevance to the context. @@ -48,12 +48,12 @@ Focus on actionable insights and continuous improvement. Build on past lessons, new_risk_debate_state = { "judge_decision": response.content, "history": risk_debate_state["history"], - "risky_history": risk_debate_state["risky_history"], - "safe_history": risk_debate_state["safe_history"], + "aggressive_history": risk_debate_state["aggressive_history"], + "conservative_history": risk_debate_state["conservative_history"], "neutral_history": risk_debate_state["neutral_history"], "latest_speaker": "Judge", - "current_risky_response": risk_debate_state["current_risky_response"], - "current_safe_response": risk_debate_state["current_safe_response"], + "current_aggressive_response": risk_debate_state["current_aggressive_response"], + "current_conservative_response": risk_debate_state["current_conservative_response"], "current_neutral_response": risk_debate_state["current_neutral_response"], "count": risk_debate_state["count"], } diff --git a/tradingagents/agents/risk_mgmt/aggresive_debator.py b/tradingagents/agents/risk_mgmt/aggressive_debator.py similarity index 52% rename from tradingagents/agents/risk_mgmt/aggresive_debator.py rename to tradingagents/agents/risk_mgmt/aggressive_debator.py index 7e2b4937..3905d3d1 100644 --- a/tradingagents/agents/risk_mgmt/aggresive_debator.py +++ b/tradingagents/agents/risk_mgmt/aggressive_debator.py @@ -2,13 +2,13 @@ import time import json -def create_risky_debator(llm): - def risky_node(state) -> dict: +def create_aggressive_debator(llm): + def aggressive_node(state) -> dict: risk_debate_state = state["risk_debate_state"] history = risk_debate_state.get("history", "") - risky_history = risk_debate_state.get("risky_history", "") + aggressive_history = risk_debate_state.get("aggressive_history", "") - current_safe_response = risk_debate_state.get("current_safe_response", "") + current_conservative_response = risk_debate_state.get("current_conservative_response", "") current_neutral_response = risk_debate_state.get("current_neutral_response", "") market_research_report = state["market_report"] @@ -18,7 +18,7 @@ def create_risky_debator(llm): trader_decision = state["trader_investment_plan"] - prompt = f"""As the Risky Risk Analyst, your role is to actively champion high-reward, high-risk opportunities, emphasizing bold strategies and competitive advantages. When evaluating the trader's decision or plan, focus intently on the potential upside, growth potential, and innovative benefits—even when these come with elevated risk. Use the provided market data and sentiment analysis to strengthen your arguments and challenge the opposing views. Specifically, respond directly to each point made by the conservative and neutral analysts, countering with data-driven rebuttals and persuasive reasoning. Highlight where their caution might miss critical opportunities or where their assumptions may be overly conservative. Here is the trader's decision: + prompt = f"""As the Aggressive Risk Analyst, your role is to actively champion high-reward, high-risk opportunities, emphasizing bold strategies and competitive advantages. When evaluating the trader's decision or plan, focus intently on the potential upside, growth potential, and innovative benefits—even when these come with elevated risk. Use the provided market data and sentiment analysis to strengthen your arguments and challenge the opposing views. Specifically, respond directly to each point made by the conservative and neutral analysts, countering with data-driven rebuttals and persuasive reasoning. Highlight where their caution might miss critical opportunities or where their assumptions may be overly conservative. Here is the trader's decision: {trader_decision} @@ -28,22 +28,22 @@ Market Research Report: {market_research_report} Social Media Sentiment Report: {sentiment_report} Latest World Affairs Report: {news_report} Company Fundamentals Report: {fundamentals_report} -Here is the current conversation history: {history} Here are the last arguments from the conservative analyst: {current_safe_response} Here are the last arguments from the neutral analyst: {current_neutral_response}. If there are no responses from the other viewpoints, do not halluncinate and just present your point. +Here is the current conversation history: {history} Here are the last arguments from the conservative analyst: {current_conservative_response} Here are the last arguments from the neutral analyst: {current_neutral_response}. If there are no responses from the other viewpoints, do not hallucinate and just present your point. Engage actively by addressing any specific concerns raised, refuting the weaknesses in their logic, and asserting the benefits of risk-taking to outpace market norms. Maintain a focus on debating and persuading, not just presenting data. Challenge each counterpoint to underscore why a high-risk approach is optimal. Output conversationally as if you are speaking without any special formatting.""" response = llm.invoke(prompt) - argument = f"Risky Analyst: {response.content}" + argument = f"Aggressive Analyst: {response.content}" new_risk_debate_state = { "history": history + "\n" + argument, - "risky_history": risky_history + "\n" + argument, - "safe_history": risk_debate_state.get("safe_history", ""), + "aggressive_history": aggressive_history + "\n" + argument, + "conservative_history": risk_debate_state.get("conservative_history", ""), "neutral_history": risk_debate_state.get("neutral_history", ""), - "latest_speaker": "Risky", - "current_risky_response": argument, - "current_safe_response": risk_debate_state.get("current_safe_response", ""), + "latest_speaker": "Aggressive", + "current_aggressive_response": argument, + "current_conservative_response": risk_debate_state.get("current_conservative_response", ""), "current_neutral_response": risk_debate_state.get( "current_neutral_response", "" ), @@ -52,4 +52,4 @@ Engage actively by addressing any specific concerns raised, refuting the weaknes return {"risk_debate_state": new_risk_debate_state} - return risky_node + return aggressive_node diff --git a/tradingagents/agents/risk_mgmt/conservative_debator.py b/tradingagents/agents/risk_mgmt/conservative_debator.py index c56e16ad..6b106b1b 100644 --- a/tradingagents/agents/risk_mgmt/conservative_debator.py +++ b/tradingagents/agents/risk_mgmt/conservative_debator.py @@ -3,13 +3,13 @@ import time import json -def create_safe_debator(llm): - def safe_node(state) -> dict: +def create_conservative_debator(llm): + def conservative_node(state) -> dict: risk_debate_state = state["risk_debate_state"] history = risk_debate_state.get("history", "") - safe_history = risk_debate_state.get("safe_history", "") + conservative_history = risk_debate_state.get("conservative_history", "") - current_risky_response = risk_debate_state.get("current_risky_response", "") + current_aggressive_response = risk_debate_state.get("current_aggressive_response", "") current_neutral_response = risk_debate_state.get("current_neutral_response", "") market_research_report = state["market_report"] @@ -19,34 +19,34 @@ def create_safe_debator(llm): trader_decision = state["trader_investment_plan"] - prompt = f"""As the Safe/Conservative Risk Analyst, your primary objective is to protect assets, minimize volatility, and ensure steady, reliable growth. You prioritize stability, security, and risk mitigation, carefully assessing potential losses, economic downturns, and market volatility. When evaluating the trader's decision or plan, critically examine high-risk elements, pointing out where the decision may expose the firm to undue risk and where more cautious alternatives could secure long-term gains. Here is the trader's decision: + prompt = f"""As the Conservative Risk Analyst, your primary objective is to protect assets, minimize volatility, and ensure steady, reliable growth. You prioritize stability, security, and risk mitigation, carefully assessing potential losses, economic downturns, and market volatility. When evaluating the trader's decision or plan, critically examine high-risk elements, pointing out where the decision may expose the firm to undue risk and where more cautious alternatives could secure long-term gains. Here is the trader's decision: {trader_decision} -Your task is to actively counter the arguments of the Risky and Neutral Analysts, highlighting where their views may overlook potential threats or fail to prioritize sustainability. Respond directly to their points, drawing from the following data sources to build a convincing case for a low-risk approach adjustment to the trader's decision: +Your task is to actively counter the arguments of the Aggressive and Neutral Analysts, highlighting where their views may overlook potential threats or fail to prioritize sustainability. Respond directly to their points, drawing from the following data sources to build a convincing case for a low-risk approach adjustment to the trader's decision: Market Research Report: {market_research_report} Social Media Sentiment Report: {sentiment_report} Latest World Affairs Report: {news_report} Company Fundamentals Report: {fundamentals_report} -Here is the current conversation history: {history} Here is the last response from the risky analyst: {current_risky_response} Here is the last response from the neutral analyst: {current_neutral_response}. If there are no responses from the other viewpoints, do not halluncinate and just present your point. +Here is the current conversation history: {history} Here is the last response from the aggressive analyst: {current_aggressive_response} Here is the last response from the neutral analyst: {current_neutral_response}. If there are no responses from the other viewpoints, do not hallucinate and just present your point. Engage by questioning their optimism and emphasizing the potential downsides they may have overlooked. Address each of their counterpoints to showcase why a conservative stance is ultimately the safest path for the firm's assets. Focus on debating and critiquing their arguments to demonstrate the strength of a low-risk strategy over their approaches. Output conversationally as if you are speaking without any special formatting.""" response = llm.invoke(prompt) - argument = f"Safe Analyst: {response.content}" + argument = f"Conservative Analyst: {response.content}" new_risk_debate_state = { "history": history + "\n" + argument, - "risky_history": risk_debate_state.get("risky_history", ""), - "safe_history": safe_history + "\n" + argument, + "aggressive_history": risk_debate_state.get("aggressive_history", ""), + "conservative_history": conservative_history + "\n" + argument, "neutral_history": risk_debate_state.get("neutral_history", ""), - "latest_speaker": "Safe", - "current_risky_response": risk_debate_state.get( - "current_risky_response", "" + "latest_speaker": "Conservative", + "current_aggressive_response": risk_debate_state.get( + "current_aggressive_response", "" ), - "current_safe_response": argument, + "current_conservative_response": argument, "current_neutral_response": risk_debate_state.get( "current_neutral_response", "" ), @@ -55,4 +55,4 @@ Engage by questioning their optimism and emphasizing the potential downsides the return {"risk_debate_state": new_risk_debate_state} - return safe_node + return conservative_node diff --git a/tradingagents/agents/risk_mgmt/neutral_debator.py b/tradingagents/agents/risk_mgmt/neutral_debator.py index a6d2ef5c..f6aa888d 100644 --- a/tradingagents/agents/risk_mgmt/neutral_debator.py +++ b/tradingagents/agents/risk_mgmt/neutral_debator.py @@ -8,8 +8,8 @@ def create_neutral_debator(llm): history = risk_debate_state.get("history", "") neutral_history = risk_debate_state.get("neutral_history", "") - current_risky_response = risk_debate_state.get("current_risky_response", "") - current_safe_response = risk_debate_state.get("current_safe_response", "") + current_aggressive_response = risk_debate_state.get("current_aggressive_response", "") + current_conservative_response = risk_debate_state.get("current_conservative_response", "") market_research_report = state["market_report"] sentiment_report = state["sentiment_report"] @@ -22,15 +22,15 @@ def create_neutral_debator(llm): {trader_decision} -Your task is to challenge both the Risky and Safe Analysts, pointing out where each perspective may be overly optimistic or overly cautious. Use insights from the following data sources to support a moderate, sustainable strategy to adjust the trader's decision: +Your task is to challenge both the Aggressive and Conservative Analysts, pointing out where each perspective may be overly optimistic or overly cautious. Use insights from the following data sources to support a moderate, sustainable strategy to adjust the trader's decision: Market Research Report: {market_research_report} Social Media Sentiment Report: {sentiment_report} Latest World Affairs Report: {news_report} Company Fundamentals Report: {fundamentals_report} -Here is the current conversation history: {history} Here is the last response from the risky analyst: {current_risky_response} Here is the last response from the safe analyst: {current_safe_response}. If there are no responses from the other viewpoints, do not halluncinate and just present your point. +Here is the current conversation history: {history} Here is the last response from the aggressive analyst: {current_aggressive_response} Here is the last response from the conservative analyst: {current_conservative_response}. If there are no responses from the other viewpoints, do not hallucinate and just present your point. -Engage actively by analyzing both sides critically, addressing weaknesses in the risky and conservative arguments to advocate for a more balanced approach. Challenge each of their points to illustrate why a moderate risk strategy might offer the best of both worlds, providing growth potential while safeguarding against extreme volatility. Focus on debating rather than simply presenting data, aiming to show that a balanced view can lead to the most reliable outcomes. Output conversationally as if you are speaking without any special formatting.""" +Engage actively by analyzing both sides critically, addressing weaknesses in the aggressive and conservative arguments to advocate for a more balanced approach. Challenge each of their points to illustrate why a moderate risk strategy might offer the best of both worlds, providing growth potential while safeguarding against extreme volatility. Focus on debating rather than simply presenting data, aiming to show that a balanced view can lead to the most reliable outcomes. Output conversationally as if you are speaking without any special formatting.""" response = llm.invoke(prompt) @@ -38,14 +38,14 @@ Engage actively by analyzing both sides critically, addressing weaknesses in the new_risk_debate_state = { "history": history + "\n" + argument, - "risky_history": risk_debate_state.get("risky_history", ""), - "safe_history": risk_debate_state.get("safe_history", ""), + "aggressive_history": risk_debate_state.get("aggressive_history", ""), + "conservative_history": risk_debate_state.get("conservative_history", ""), "neutral_history": neutral_history + "\n" + argument, "latest_speaker": "Neutral", - "current_risky_response": risk_debate_state.get( - "current_risky_response", "" + "current_aggressive_response": risk_debate_state.get( + "current_aggressive_response", "" ), - "current_safe_response": risk_debate_state.get("current_safe_response", ""), + "current_conservative_response": risk_debate_state.get("current_conservative_response", ""), "current_neutral_response": argument, "count": risk_debate_state["count"] + 1, } diff --git a/tradingagents/agents/utils/agent_states.py b/tradingagents/agents/utils/agent_states.py index 3a859ea1..813b00ee 100644 --- a/tradingagents/agents/utils/agent_states.py +++ b/tradingagents/agents/utils/agent_states.py @@ -23,22 +23,22 @@ class InvestDebateState(TypedDict): # Risk management team state class RiskDebateState(TypedDict): - risky_history: Annotated[ - str, "Risky Agent's Conversation history" + aggressive_history: Annotated[ + str, "Aggressive Agent's Conversation history" ] # Conversation history - safe_history: Annotated[ - str, "Safe Agent's Conversation history" + conservative_history: Annotated[ + str, "Conservative Agent's Conversation history" ] # Conversation history neutral_history: Annotated[ str, "Neutral Agent's Conversation history" ] # Conversation history history: Annotated[str, "Conversation history"] # Conversation history latest_speaker: Annotated[str, "Analyst that spoke last"] - current_risky_response: Annotated[ - str, "Latest response by the risky analyst" + current_aggressive_response: Annotated[ + str, "Latest response by the aggressive analyst" ] # Last response - current_safe_response: Annotated[ - str, "Latest response by the safe analyst" + current_conservative_response: Annotated[ + str, "Latest response by the conservative analyst" ] # Last response current_neutral_response: Annotated[ str, "Latest response by the neutral analyst" diff --git a/tradingagents/graph/conditional_logic.py b/tradingagents/graph/conditional_logic.py index e7c87859..7b1b1f90 100644 --- a/tradingagents/graph/conditional_logic.py +++ b/tradingagents/graph/conditional_logic.py @@ -60,8 +60,8 @@ class ConditionalLogic: state["risk_debate_state"]["count"] >= 3 * self.max_risk_discuss_rounds ): # 3 rounds of back-and-forth between 3 agents return "Risk Judge" - if state["risk_debate_state"]["latest_speaker"].startswith("Risky"): - return "Safe Analyst" - if state["risk_debate_state"]["latest_speaker"].startswith("Safe"): + if state["risk_debate_state"]["latest_speaker"].startswith("Aggressive"): + return "Conservative Analyst" + if state["risk_debate_state"]["latest_speaker"].startswith("Conservative"): return "Neutral Analyst" - return "Risky Analyst" + return "Aggressive Analyst" diff --git a/tradingagents/graph/propagation.py b/tradingagents/graph/propagation.py index 58ebd0a8..dcc1a5aa 100644 --- a/tradingagents/graph/propagation.py +++ b/tradingagents/graph/propagation.py @@ -29,8 +29,8 @@ class Propagator: "risk_debate_state": RiskDebateState( { "history": "", - "current_risky_response": "", - "current_safe_response": "", + "current_aggressive_response": "", + "current_conservative_response": "", "current_neutral_response": "", "count": 0, } diff --git a/tradingagents/graph/setup.py b/tradingagents/graph/setup.py index b270ffc0..772efe7f 100644 --- a/tradingagents/graph/setup.py +++ b/tradingagents/graph/setup.py @@ -98,9 +98,9 @@ class GraphSetup: trader_node = create_trader(self.quick_thinking_llm, self.trader_memory) # Create risk analysis nodes - risky_analyst = create_risky_debator(self.quick_thinking_llm) + aggressive_analyst = create_aggressive_debator(self.quick_thinking_llm) neutral_analyst = create_neutral_debator(self.quick_thinking_llm) - safe_analyst = create_safe_debator(self.quick_thinking_llm) + conservative_analyst = create_conservative_debator(self.quick_thinking_llm) risk_manager_node = create_risk_manager( self.deep_thinking_llm, self.risk_manager_memory ) @@ -121,9 +121,9 @@ class GraphSetup: workflow.add_node("Bear Researcher", bear_researcher_node) workflow.add_node("Research Manager", research_manager_node) workflow.add_node("Trader", trader_node) - workflow.add_node("Risky Analyst", risky_analyst) + workflow.add_node("Aggressive Analyst", aggressive_analyst) workflow.add_node("Neutral Analyst", neutral_analyst) - workflow.add_node("Safe Analyst", safe_analyst) + workflow.add_node("Conservative Analyst", conservative_analyst) workflow.add_node("Risk Judge", risk_manager_node) # Define edges @@ -170,17 +170,17 @@ class GraphSetup: }, ) workflow.add_edge("Research Manager", "Trader") - workflow.add_edge("Trader", "Risky Analyst") + workflow.add_edge("Trader", "Aggressive Analyst") workflow.add_conditional_edges( - "Risky Analyst", + "Aggressive Analyst", self.conditional_logic.should_continue_risk_analysis, { - "Safe Analyst": "Safe Analyst", + "Conservative Analyst": "Conservative Analyst", "Risk Judge": "Risk Judge", }, ) workflow.add_conditional_edges( - "Safe Analyst", + "Conservative Analyst", self.conditional_logic.should_continue_risk_analysis, { "Neutral Analyst": "Neutral Analyst", @@ -191,7 +191,7 @@ class GraphSetup: "Neutral Analyst", self.conditional_logic.should_continue_risk_analysis, { - "Risky Analyst": "Risky Analyst", + "Aggressive Analyst": "Aggressive Analyst", "Risk Judge": "Risk Judge", }, ) diff --git a/tradingagents/graph/trading_graph.py b/tradingagents/graph/trading_graph.py index 0180e243..9a3d472c 100644 --- a/tradingagents/graph/trading_graph.py +++ b/tradingagents/graph/trading_graph.py @@ -234,8 +234,8 @@ class TradingAgentsGraph: }, "trader_investment_decision": final_state["trader_investment_plan"], "risk_debate_state": { - "risky_history": final_state["risk_debate_state"]["risky_history"], - "safe_history": final_state["risk_debate_state"]["safe_history"], + "aggressive_history": final_state["risk_debate_state"]["aggressive_history"], + "conservative_history": final_state["risk_debate_state"]["conservative_history"], "neutral_history": final_state["risk_debate_state"]["neutral_history"], "history": final_state["risk_debate_state"]["history"], "judge_decision": final_state["risk_debate_state"]["judge_decision"],