feat: lite deep researcher implementation

This commit is contained in:
He Tao
2025-04-07 16:25:55 +08:00
commit 03798ded08
58 changed files with 4242 additions and 0 deletions

11
src/tools/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
from .crawl import crawl_tool
from .python_repl import python_repl_tool
from .search import tavily_tool
from .bash_tool import bash_tool
__all__ = [
"bash_tool",
"crawl_tool",
"tavily_tool",
"python_repl_tool",
]