TM23-sanji
feat: add app.py entry point, configure Docker for local package installation, and update README for HuggingFace Spaces deployment
dd80bb4
raw
history blame contribute delete
309 Bytes
"""
HuggingFace Spaces entry point for the Algo Reasoning Environment.
This file serves as the entry point for HF Spaces Docker deployment.
It imports and runs the FastAPI app from algo_reasoning_env.server.app.
"""
from algo_reasoning_env.server.app import app, main
if __name__ == "__main__":
main()