yashmarathe's picture
refactor: full openenv protocol compliance
1a55ff4
raw
history blame contribute delete
427 Bytes
"""
Data Cleaning RL Environment for OpenEnv.
An RL environment where agents clean tabular datasets using structured commands,
graded by downstream composite quality metrics.
"""
from data_cleaning_env.models import CleaningAction, Observation, EpisodeState
from data_cleaning_env.client import DataCleaningEnvClient
__all__ = ["CleaningAction", "Observation", "EpisodeState", "DataCleaningEnvClient"]
__version__ = "1.0.0"