Spaces:
Sleeping
Sleeping
File size: 404 Bytes
b05fe7b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | from __future__ import annotations
"""
Top-level models shim for the WolfeClick OpenEnv environment.
Exposes the same types as `env.models` so tools expecting a standard
OpenEnv layout (client.py, models.py, server/app.py) can import them.
"""
from env.models import WolfeClickAction, WolfeClickObservation, WolfeClickState
__all__ = ["WolfeClickAction", "WolfeClickObservation", "WolfeClickState"]
|