Skip to content

Commit 258cfb1

Browse files
fix requirements
1 parent b7ab49c commit 258cfb1

File tree

4 files changed

+3963
-2
lines changed

4 files changed

+3963
-2
lines changed

ms_agent/tools/tool_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
from ms_agent.tools.base import ToolBase
1515
from ms_agent.tools.code import CodeExecutionTool, LocalCodeExecutionTool
1616
from ms_agent.tools.filesystem_tool import FileSystemTool
17-
from ms_agent.tools.findata.findata_fetcher import FinancialDataFetcher
1817
from ms_agent.tools.image_generator import ImageGenerator
1918
from ms_agent.tools.mcp_client import MCPClient
2019
from ms_agent.tools.shell.shell import Shell
@@ -77,6 +76,7 @@ def __init__(self,
7776
self.extra_tools.append(CodeExecutionTool(config))
7877
if hasattr(config, 'tools') and hasattr(config.tools,
7978
'financial_data_fetcher'):
79+
from ms_agent.tools.findata.findata_fetcher import FinancialDataFetcher
8080
self.extra_tools.append(FinancialDataFetcher(config))
8181
if hasattr(config, 'tools') and getattr(config.tools, 'agent_tools',
8282
None):

requirements/research.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ markdown
99
mcp
1010
modelscope
1111
openai
12+
pandas
1213
Pillow
1314
python-dotenv
1415
requests

requirements/webui.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
aiohttp
22
fastapi
33
pandas
4-
uvicorn
4+
uvicorn[standard]

0 commit comments

Comments
 (0)