update gradio req
Browse files- .gitignore +1 -1
- app.py +2 -1
- requirements.txt +1 -1
.gitignore
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
.idea/
|
| 2 |
client_viewer.py
|
| 3 |
playground.py
|
| 4 |
-
|
|
|
|
| 1 |
.idea/
|
| 2 |
client_viewer.py
|
| 3 |
playground.py
|
| 4 |
+
__pycache__/
|
app.py
CHANGED
|
@@ -136,4 +136,5 @@ with gr.Blocks(title="Face Shine") as app:
|
|
| 136 |
with gr.Row():
|
| 137 |
gr.HTML(footer)
|
| 138 |
|
| 139 |
-
app.launch(share=False, debug=True,
|
|
|
|
|
|
| 136 |
with gr.Row():
|
| 137 |
gr.HTML(footer)
|
| 138 |
|
| 139 |
+
app.launch(share=False, debug=True, show_error=True)
|
| 140 |
+
app.queue()
|
requirements.txt
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
gradio~=3.
|
|
|
|
| 1 |
+
gradio~=3.47.1
|