File size: 319 Bytes
368277b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""
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"]