Spaces:
Sleeping
Sleeping
File size: 451 Bytes
9eb0831 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | """
SRE OpenEnv — Autonomous SRE Training Environment
An OpenEnv 0.1 environment for training AI agents in Site Reliability
Engineering and DevOps workflows. Provides three difficulty tiers of
realistic infrastructure failures with deterministic grading.
"""
from models import SREAction, SREObservation, SREState
from client import SREEnv
__all__ = [
"SREAction",
"SREObservation",
"SREState",
"SREEnv",
]
__version__ = "0.1.0"
|