Spaces:
Runtime error
Runtime error
Cascade Bot
commited on
Commit
·
6166f7f
1
Parent(s):
4ac9be9
chore: update gradio versions
Browse files- Updated gradio to 5.11.0 in README.md and requirements.txt
- Added gradio-client>=1.5.3 dependency
- README.md +2 -2
- requirements.txt +2 -1
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: 🤖
|
|
4 |
colorFrom: blue
|
5 |
colorTo: purple
|
6 |
sdk: gradio
|
7 |
-
sdk_version:
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
@@ -106,7 +106,7 @@ MIT License - see LICENSE file for details
|
|
106 |
- `.env.example`: Example environment variables (for reference)
|
107 |
|
108 |
## Dependencies
|
109 |
-
- gradio==
|
110 |
- requests==2.31.0
|
111 |
|
112 |
---
|
|
|
4 |
colorFrom: blue
|
5 |
colorTo: purple
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 5.11.0
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
|
|
106 |
- `.env.example`: Example environment variables (for reference)
|
107 |
|
108 |
## Dependencies
|
109 |
+
- gradio==5.11.0
|
110 |
- requests==2.31.0
|
111 |
|
112 |
---
|
requirements.txt
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
# Core dependencies
|
2 |
fastapi>=0.68.0
|
3 |
uvicorn>=0.15.0
|
4 |
-
gradio>=
|
|
|
5 |
pydantic>=2.0.0
|
6 |
python-dotenv>=0.19.0
|
7 |
|
|
|
1 |
# Core dependencies
|
2 |
fastapi>=0.68.0
|
3 |
uvicorn>=0.15.0
|
4 |
+
gradio>=5.11.0
|
5 |
+
gradio-client>=1.5.3
|
6 |
pydantic>=2.0.0
|
7 |
python-dotenv>=0.19.0
|
8 |
|