Paul-Louis Pröve
commited on
Commit
·
0169b98
1
Parent(s):
b88f985
user and pw in secrets
Browse files- .vscode/settings.json +6 -0
- __pycache__/app.cpython-310.pyc +0 -0
- app.py +1 -1
.vscode/settings.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"[python]": {
|
3 |
+
"editor.defaultFormatter": "ms-python.black-formatter"
|
4 |
+
},
|
5 |
+
"python.formatting.provider": "none"
|
6 |
+
}
|
__pycache__/app.cpython-310.pyc
ADDED
Binary file (4.56 kB). View file
|
|
app.py
CHANGED
@@ -144,5 +144,5 @@ with gr.Blocks(
|
|
144 |
)
|
145 |
gr.Button("Undo").click(lambda x: (x[:-1]), [chatbot], [chatbot])
|
146 |
|
147 |
-
app.queue().launch(auth=("
|
148 |
# app.queue().launch()
|
|
|
144 |
)
|
145 |
gr.Button("Undo").click(lambda x: (x[:-1]), [chatbot], [chatbot])
|
146 |
|
147 |
+
app.queue().launch(auth=(os.getenv("USER"), os.getenv("PASSWORD")))
|
148 |
# app.queue().launch()
|