Spaces:
Sleeping
Sleeping
Fix: Upgrade to Gradio 5.9.1, add show_error
Browse files- app.py +1 -1
- requirements.txt +3 -3
app.py
CHANGED
|
@@ -605,4 +605,4 @@ with gr.Blocks(css=CUSTOM_CSS, title="PromptWork") as app:
|
|
| 605 |
|
| 606 |
|
| 607 |
if __name__ == "__main__":
|
| 608 |
-
app.launch(server_name="0.0.0.0", server_port=7860)
|
|
|
|
| 605 |
|
| 606 |
|
| 607 |
if __name__ == "__main__":
|
| 608 |
+
app.launch(server_name="0.0.0.0", server_port=7860, share=False, show_error=True)
|
requirements.txt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
-
gradio==
|
| 2 |
-
anthropic==0.
|
| 3 |
-
huggingface_hub=
|
|
|
|
| 1 |
+
gradio==5.9.1
|
| 2 |
+
anthropic==0.42.0
|
| 3 |
+
huggingface_hub>=0.25.0,<1.0.0
|