File size: 687 Bytes
2b9a95b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | """
Agent module - Agent action space and endpoints.
This module provides:
- AgentActionSpace: What actions agent can perform
- Agent-specific API endpoints (separate from admin)
- Agent session management
Key principle: Agent endpoints return filtered data.
HP, agility, and internal details are hidden.
"""
from .action_space import (
AgentActionSpace,
ActionType,
AgentAction,
DeployAction,
SubmitAction,
)
from .session import (
AgentSession,
SessionManager,
)
__all__ = [
# Action Space
'AgentActionSpace',
'ActionType',
'AgentAction',
'DeployAction',
'SubmitAction',
# Session
'AgentSession',
'SessionManager',
]
|