carrom_rl_env / __init__.py
bpHigh's picture
Initial: OpenEnv Carrom v0.3.0 — ICF-compliant physics RL environment
13b4881
raw
history blame contribute delete
347 Bytes
"""OpenEnv Carrom — a physics-based RL environment for the board game Carrom.
Features real Newtonian physics (friction, elasticity, collisions),
LLM-friendly text actions, and Green Agent efficiency tracking.
"""
from carrom_env.models import Action, Observation
from client import CarromEnv
__all__ = ["Action", "Observation", "CarromEnv"]