Python Protocol
observationdonesuccess
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Required environment interface
class Environment(Protocol):
def reset(self, goal: str) -> str: ...
def step(self, action: str) -> (
tuple[str, bool, bool] | Awaitable[tuple[str, bool, bool]]
): ...
observationdonesuccess