sre-openenv / __init__.py
Dragonfire146's picture
Initial commit
9eb0831
raw
history blame contribute delete
451 Bytes
"""
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"