From 623eac627339b9bede1319be0076dd8dc352b620 Mon Sep 17 00:00:00 2001 From: zhonghao lu Date: Sun, 28 Sep 2025 12:17:13 +0800 Subject: [PATCH] fix: fix sec agent name --- python/configs/agent_cards/sec_agent.json | 2 +- python/scripts/launch.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/configs/agent_cards/sec_agent.json b/python/configs/agent_cards/sec_agent.json index ddbc072c8..760a5dcd5 100644 --- a/python/configs/agent_cards/sec_agent.json +++ b/python/configs/agent_cards/sec_agent.json @@ -1,5 +1,5 @@ { - "name": "SecAgent", + "name": "SECAgent", "display_name": "SEC Agent", "url": "http://localhost:10003/", "description": "SecAgent can analyze SEC filings like 10-Q, 10-K, 13-F and analyze stock holdings of institutional investment managers. It can chat about stock performance, financial metrics, and market trends or track specific stocks and provide updates.", diff --git a/python/scripts/launch.py b/python/scripts/launch.py index ad39c5bb9..aca043e73 100644 --- a/python/scripts/launch.py +++ b/python/scripts/launch.py @@ -30,7 +30,7 @@ "ValuationAnalystAgent": "valuation_analyst", "WarrenBuffettAgent": "warren_buffett", } -SEC_AGENT_NAME = "SecAgent" +SEC_AGENT_NAME = "SECAgent" TRADING_AGENTS_NAME = "TradingAgentsAdapter" AGENTS = list(MAP_NAME_ANALYST.keys()) + [SEC_AGENT_NAME, TRADING_AGENTS_NAME]