File size: 385 Bytes
3eb9552
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
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"]