MugdhaV commited on
Commit
cd96d6d
·
1 Parent(s): ebd6cba

Fix class name: SecurityAuditorApp -> ModernSecurityAuditorApp

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -3,8 +3,12 @@ HuggingFace Spaces Entry Point for Security Auditor
3
  Launches the Gradio interface with Modal backend integration
4
  """
5
 
6
- from gradio_app import SecurityAuditorApp
7
 
8
  if __name__ == "__main__":
9
- app = SecurityAuditorApp()
10
- app.interface.launch()
 
 
 
 
 
3
  Launches the Gradio interface with Modal backend integration
4
  """
5
 
6
+ from gradio_app import ModernSecurityAuditorApp
7
 
8
  if __name__ == "__main__":
9
+ app = ModernSecurityAuditorApp()
10
+ app.launch(
11
+ server_name="0.0.0.0",
12
+ server_port=7860,
13
+ share=False
14
+ )