Hiring_agent / agentpro /__init__.py
Shaikmohdhuz's picture
Init
d2542d6
raw
history blame contribute delete
416 Bytes
from .agent import AgentPro
from typing import Any
from agentpro.tools import AresInternetTool, CodeEngine, YouTubeSearchTool, SlideGenerationTool # add more tools when available
ares_tool = AresInternetTool()
code_tool = CodeEngine()
youtube_tool = YouTubeSearchTool()
slide_tool = SlideGenerationTool()
__all__ = ['AgentPro', 'ares_tool', 'code_tool', 'youtube_tool', 'slide_tool'] # add more tools when available