wd666/agents/__init__.py
2026-01-07 11:02:05 +08:00

18 lines
353 B
Python

"""Agents 模块"""
from agents.base_agent import BaseAgent, AgentMessage
from agents.agent_profiles import (
AGENT_PROFILES,
get_agent_profile,
get_all_agents,
get_recommended_agents
)
__all__ = [
"BaseAgent",
"AgentMessage",
"AGENT_PROFILES",
"get_agent_profile",
"get_all_agents",
"get_recommended_agents"
]