anttirauhala commited on
Commit
66c9305
·
verified ·
1 Parent(s): cbaf8a0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -85,4 +85,10 @@ interface = gr.Interface(
85
  description="Upload an image to detect signatures"
86
  )
87
 
88
- interface.launch()
 
 
 
 
 
 
 
85
  description="Upload an image to detect signatures"
86
  )
87
 
88
+ # Launch with specific configs for API access
89
+ interface.launch(
90
+ share=True,
91
+ server_name="0.0.0.0",
92
+ enable_queue=True,
93
+ show_api=True
94
+ )