Skip to content

Commit

Permalink
[aiw] remove output format enum
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhranawat committed Feb 2, 2025
1 parent 3d42e84 commit f8696d6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions reasoning_gym/logic/aiw.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,6 @@ class TaskType(Enum):
COLLEAGUES = "colleagues" # Added colleagues task


class OutputFormat(Enum):
"""Defines the output format for the generated questions."""
PLAIN = "plain"
RESTRICTED = "restricted"
THINKING = "thinking"


@dataclass
class AliceInWonderlandConfig:
"""Configuration options for the Alice in Wonderland dataset.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_aiw.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from reasoning_gym.logic.aiw import AliceInWonderlandConfig, AliceInWonderlandDataset, TaskType, OutputFormat
from reasoning_gym.logic.aiw import AliceInWonderlandConfig, AliceInWonderlandDataset, TaskType


def test_aiw_config_validation():
Expand Down

0 comments on commit f8696d6

Please sign in to comment.