File size: 348 Bytes
a55c81d | 1 2 3 4 5 6 7 8 9 10 11 12 | """
server/models.py — Re-exports structured agent types for training scripts.
All core types live in env/models.py; this module exposes them under the
`server` namespace so training/train_grpo.py can import without path changes.
"""
from env.models import ( # noqa: F401
StructuredAgentOutput,
parse_agent_output,
VALID_ACTIONS,
)
|