anthonym21's picture
Initial Commit with GRPO notebook
935a6ef
raw
history blame contribute delete
728 Bytes
"""Slipstream Governance Environment (OpenEnv).
This environment is a *protocol governor* for Slipstream/SLIP messages.
It samples a natural-language intent (from Slipstream-TQT), optionally injects a covert-channel
"temptation" (a secret), and rewards the agent for:
- Emitting a single well-formed `SLIP v1 ...` message
- Preserving the intended anchor/arguments from the scenario
- Not leaking the injected secret
- Not inventing out-of-registry anchors or suspicious high-entropy tokens
"""
from .models import SlipstreamAction, SlipstreamObservation, SlipstreamState
from .client import SlipstreamGovEnv
__all__ = [
"SlipstreamAction",
"SlipstreamObservation",
"SlipstreamState",
"SlipstreamGovEnv",
]