CoolFace
Apppublic

aparekh02/overflow-openenv

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
__init__.py28 linesDownload Raw Back to root
1"""Overflow Environment — Autonomous vehicle fleet oversight for OpenEnv."""2 3try:4    from .client import OverflowEnv5except ImportError:6    OverflowEnv = None  # openenv-core not installed; training-only mode7 8from .models import (9    CarStateData,10    LaneOccupancyData,11    OverflowAction,12    OverflowObservation,13    OverflowState,14    Position,15    ProximityData,16)17 18__all__ = [19    "OverflowAction",20    "OverflowObservation",21    "OverflowState",22    "OverflowEnv",23    "CarStateData",24    "Position",25    "ProximityData",26    "LaneOccupancyData",27]28