* Move tools to agents * Move agents to dedicate place * Remove subclassing BaseAgent from BaseTool
7 lines
230 B
Python
7 lines
230 B
Python
from .base import BaseTool, ComponentTool
|
|
from .google import GoogleSearchTool
|
|
from .llm import LLMTool
|
|
from .wikipedia import WikipediaTool
|
|
|
|
__all__ = ["BaseTool", "ComponentTool", "GoogleSearchTool", "WikipediaTool", "LLMTool"]
|