File size: 728 Bytes
935a6ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""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",
]