feat: Add cognition module with initial reasoning tasks namespace

This commit is contained in:
Andreas Koepf (aider) 2025-01-23 13:31:30 +01:00
parent 48492c4fd8
commit e1d04f8a2f
2 changed files with 11 additions and 1 deletions

9
python Normal file
View file

@ -0,0 +1,9 @@
"""
Cognition tasks for training reasoning capabilities:
- Pattern recognition
- Sequence completion
- Logical reasoning
- Working memory
"""
__all__ = []

View file

@ -3,6 +3,7 @@ Reasoning Gym - A library of procedural dataset generators for training reasonin
""" """
from . import arithmetic from . import arithmetic
from . import cognition
__version__ = "0.1.0" __version__ = "0.1.0"
__all__ = ["arithmetic"] __all__ = ["arithmetic", "cognition"]