""" HuggingFace Spaces Entry Point for Security Auditor Launches the Gradio interface with Modal backend integration """ from gradio_app import ModernSecurityAuditorApp if __name__ == "__main__": app = ModernSecurityAuditorApp() app.launch( server_name="0.0.0.0", server_port=7860, share=False )