Yaroslav95 commited on
Commit
5cf78b2
·
1 Parent(s): ba8dcd3

another auth try

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -193,4 +193,9 @@ iface = gr.Interface(
193
 
194
  valid_users = [("admin", "password123"), ("user1", "pass456")]
195
 
196
- iface.launch(auth=valid_users)
 
 
 
 
 
 
193
 
194
  valid_users = [("admin", "password123"), ("user1", "pass456")]
195
 
196
+ iface.launch(
197
+ debug=True,
198
+ enable_queue=False,
199
+ auth=("username", "password"),
200
+ auth_message="Try this",
201
+ )