"""Entry point for Hugging Face Spaces. This module imports and exposes the FastAPI app from the API module, allowing Hugging Face Spaces to discover and run the application automatically. """ from nygaardcodecommentclassification.api.API import app __all__ = ["app"] if __name__ == "__main__": import uvicorn uvicorn.run(app, host="0.0.0.0", port=7860)