Spaces:
Sleeping
Sleeping
Attempt to fix ios mobile auth in line 159
Browse files
app.py
CHANGED
|
@@ -156,4 +156,4 @@ with gr.Blocks(title="CAT") as demo:
|
|
| 156 |
user_input.submit(chat, [user_input, state], [user_input, chatbot, state, download_btn])
|
| 157 |
|
| 158 |
if __name__ == "__main__":
|
| 159 |
-
demo.launch(auth=("student", "BMCC"), ssr_mode=False)
|
|
|
|
| 156 |
user_input.submit(chat, [user_input, state], [user_input, chatbot, state, download_btn])
|
| 157 |
|
| 158 |
if __name__ == "__main__":
|
| 159 |
+
demo.launch(auth=("student", "BMCC"), ssr_mode=False, auth_cookie_secure=True)
|