ReMind / src /agents /__init__.py
GhostDragon01's picture
Add application file
368277b
raw
history blame contribute delete
319 Bytes
"""
Agents package for the Gradio Agents MCP application.
"""
from .categoriser_agent import categoriser_agent
from .bookmarks_agent import bookmarks_agent
from .gmail_agent import gmail_agent
from .manager_agent import manager_agent
__all__ = ["categoriser_agent", "bookmarks_agent", "gmail_agent", "manager_agent"]