Openenv / app /state.py
vishaldhakad's picture
intial push
eda351c
Raw
History Blame Contribute Delete
348 Bytes
"""
app/state.py — EpisodeState dataclass.
Holds the full state of one RL episode. Serialized to/from Redis.
"""
from dataclasses import dataclass, field
from typing import Any, Dict
@dataclass
class EpisodeState:
task: Dict[str, Any]
graph: Any # CodeGraph instance
step: int
done: bool
difficulty: str = "medium"