Spaces:
Runtime error
Runtime error
update gradio version to 5.35.0 in app.py and requirements.txt
Browse files- app.py +1 -1
- requirements.txt +2 -2
app.py
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
import base64, os
|
3 |
# add a command for installing flash-attn
|
4 |
os.system('pip install flash-attn --no-build-isolation')
|
5 |
-
os.system("pip install gradio==5.
|
6 |
|
7 |
from typing import Optional
|
8 |
import spaces
|
|
|
2 |
import base64, os
|
3 |
# add a command for installing flash-attn
|
4 |
os.system('pip install flash-attn --no-build-isolation')
|
5 |
+
os.system("pip install gradio==5.35.0")
|
6 |
|
7 |
from typing import Optional
|
8 |
import spaces
|
requirements.txt
CHANGED
@@ -12,8 +12,8 @@ pydantic>=2.0
|
|
12 |
markdown2[all]
|
13 |
numpy
|
14 |
scikit-learn==1.5.0
|
15 |
-
gradio==5.
|
16 |
-
gradio_client
|
17 |
spaces
|
18 |
requests
|
19 |
httpx
|
|
|
12 |
markdown2[all]
|
13 |
numpy
|
14 |
scikit-learn==1.5.0
|
15 |
+
gradio==5.35.0
|
16 |
+
gradio_client==1.10.4
|
17 |
spaces
|
18 |
requests
|
19 |
httpx
|