polyguard-openenv / app /agents /graph_safety_agent.py
TheJackBright's picture
Deploy PolyGuard OpenEnv Space
877add7 verified
"""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"]