File size: 291 Bytes
fd1a1b2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | from dataclasses import dataclass
from typing import Optional
@dataclass
class DeepCoderEnvConfig:
render_mode: str = "text"
max_steps: int = 1
invalid_action_score: float = 0.0
dataset_path: Optional[str] = None
cache_dir: Optional[str] = None
split: str = "test"
|