Commit
·
4a30ac2
1
Parent(s):
5e910c4
Update .gitignore and requirements; remove sharing from demo.launch()
Browse files- .gitignore +3 -1
- app.py +1 -1
- requirements.txt +1 -0
.gitignore
CHANGED
|
@@ -52,4 +52,6 @@ gradio_cached_examples/
|
|
| 52 |
|
| 53 |
# Model cache
|
| 54 |
models/
|
| 55 |
-
.cache/
|
|
|
|
|
|
|
|
|
| 52 |
|
| 53 |
# Model cache
|
| 54 |
models/
|
| 55 |
+
.cache/
|
| 56 |
+
|
| 57 |
+
check_space_status.py
|
app.py
CHANGED
|
@@ -248,4 +248,4 @@ with gr.Blocks(theme=gr.themes.Soft(), css=custom_css) as demo:
|
|
| 248 |
clear.click(lambda: None, None, chatbot, queue=False)
|
| 249 |
|
| 250 |
if __name__ == "__main__":
|
| 251 |
-
demo.launch(
|
|
|
|
| 248 |
clear.click(lambda: None, None, chatbot, queue=False)
|
| 249 |
|
| 250 |
if __name__ == "__main__":
|
| 251 |
+
demo.launch()
|
requirements.txt
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
gradio==5.9.1
|
|
|
|
| 2 |
gradio-client==1.5.2
|
| 3 |
transformers==4.54.1
|
| 4 |
torch>=2.0.0
|
|
|
|
| 1 |
gradio==5.9.1
|
| 2 |
+
pydantic==2.10.6
|
| 3 |
gradio-client==1.5.2
|
| 4 |
transformers==4.54.1
|
| 5 |
torch>=2.0.0
|