18 lines
353 B
Python
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"
|
||
|
|
]
|