mindcraft/tasks/__init__.py
Johnathan Walker 7c5a7f8df8 fix: Add missing __init__.py to make tasks directory a Python package
Resolves the ModuleNotFoundError when running evaluation_script.py.
Users can now run the script after installing dependencies:

1. python -m venv venv && source venv/bin/activate
2. pip install -r requirements.txt
3. PYTHONPATH=. python tasks/evaluation_script.py [args]
2025-06-25 19:06:31 -04:00

7 lines
No EOL
150 B
Python

"""
Mindcraft Task Evaluation Package
This package provides utilities for running and evaluating Minecraft AI agent tasks.
"""
__version__ = "1.0.0"