Spaces:
Running
Running
TM23-sanji
feat: add app.py entry point, configure Docker for local package installation, and update README for HuggingFace Spaces deployment
dd80bb4 | """ | |
| 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() | |