OpenEnv / openenv /__init__.py
mahammadaftab's picture
Update space
3eb9552
raw
history blame contribute delete
385 Bytes
"""
OpenEnv - A Production-Ready Reinforcement Learning Environment
================================================================
This package provides a Gymnasium-compatible environment for AI agent training.
"""
from openenv.core.env import OpenEnv
from openenv.core.config import EnvConfig
__version__ = "1.0.0"
__author__ = "OpenEnv Team"
__all__ = ["OpenEnv", "EnvConfig"]