Spaces:
Running
Running
File size: 274 Bytes
877add7 | 1 2 3 4 5 6 7 8 9 10 11 12 | """Canonical GraphSafety agent module.
This file is kept for required path compatibility and re-exports the
implementation from ``graph_agent.py``.
"""
from __future__ import annotations
from app.agents.graph_agent import GraphSafetyAgent
__all__ = ["GraphSafetyAgent"]
|