from .base import AgentProfile from .secretary import secretary from .server_admin import server_admin from .smart_home import smart_home ALL_PROFILES = [smart_home, server_admin, secretary] __all__ = ["AgentProfile", "ALL_PROFILES", "smart_home", "server_admin", "secretary"]