Spaces:
Sleeping
Sleeping
| """ | |
| OpenSecOpsEnv | |
| ============= | |
| SecOps incident response environment for agent evaluation and RL training. | |
| """ | |
| from opensecops_env.env import OpenSecOpsEnv | |
| from opensecops_env.models import ( | |
| ActionType, | |
| SecOpsAction, | |
| SecOpsObservation, | |
| SecOpsState, | |
| ) | |
| __version__ = "0.2.0" | |
| __all__ = [ | |
| "OpenSecOpsEnv", | |
| "SecOpsAction", | |
| "SecOpsObservation", | |
| "SecOpsState", | |
| "ActionType", | |
| ] | |