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