File size: 510 Bytes
4418db4
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from .agent import AgentPro
from typing import Any
from agentpro.tools import AresInternetTool, CodeEngine, YouTubeSearchTool, SlideGenerationTool, CBTExerciseTool, CBTExerciseType # add more tools when available
ares_tool = AresInternetTool()
code_tool = CodeEngine()
youtube_tool = YouTubeSearchTool()
slide_tool = SlideGenerationTool()
cbt_tool = CBTExerciseTool()
__all__ = ['AgentPro', 'ares_tool', 'code_tool', 'youtube_tool', 'slide_tool', 'cbt_tool', 'CBTExerciseType'] # add more tools when available