Spaces:
Sleeping
Sleeping
File size: 416 Bytes
d2542d6 |
1 2 3 4 5 6 7 8 9 |
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
|