ciaochris commited on
Commit
5978a33
·
verified ·
1 Parent(s): e8ce870

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -102,5 +102,6 @@ iface = gr.Interface(
102
  article="IMPORTANT: This application is for educational purposes only. Always consult with a qualified healthcare provider for medical concerns. The information provided by this tool should not be used for self-diagnosis or treatment."
103
  )
104
 
105
- # Add usage tracking (for demonstration purposes only, ensure compliance with privacy laws in practice)
106
- iface.launch(analytics_enabled=True)
 
 
102
  article="IMPORTANT: This application is for educational purposes only. Always consult with a qualified healthcare provider for medical concerns. The information provided by this tool should not be used for self-diagnosis or treatment."
103
  )
104
 
105
+ # Launch the app
106
+ if __name__ == "__main__":
107
+ iface.launch()