File size: 284 Bytes
87c40c2
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""Challenge-compatible inference entry point (root re-export).

The submission contract requires inference.py at the repository root.
All logic lives in runners/inference.py.
"""

from runners.inference import main, run_inference  # noqa: F401

if __name__ == "__main__":
    main()