Spaces:
Sleeping
Sleeping
File size: 431 Bytes
bf16a34 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | """Task definitions for the HFT Auditor (Elite-Trade-Sentry) environment.
Exports
-------
task1_easy — Anomaly Detection Easy (5 steps, EASY difficulty)
task2_medium — Anomaly Detection Medium (10 steps, MEDIUM difficulty)
task3_hard — Anomaly Detection Hard (20 steps, HARD difficulty)
"""
from tasks import task1_easy, task2_medium, task3_hard
__all__ = ["task1_easy", "task2_medium", "task3_hard"]
|