Spaces:
Sleeping
Sleeping
NikhilSetiya
commited on
Commit
·
0e58639
1
Parent(s):
951c6d3
Update to latest Gradio version and dependencies
Browse files- README.md +2 -2
- requirements.txt +6 -6
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: 🔢
|
|
4 |
colorFrom: blue
|
5 |
colorTo: purple
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 4.
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
@@ -28,7 +28,7 @@ A simple calculator application built with Gradio and FastAPI.
|
|
28 |
4. View the result in the output field
|
29 |
|
30 |
## Tech Stack
|
31 |
-
- Frontend: Gradio
|
32 |
- Backend: FastAPI
|
33 |
- Data Validation: Pydantic
|
34 |
|
|
|
4 |
colorFrom: blue
|
5 |
colorTo: purple
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 4.19.2
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
|
|
28 |
4. View the result in the output field
|
29 |
|
30 |
## Tech Stack
|
31 |
+
- Frontend: Gradio 4.19.2
|
32 |
- Backend: FastAPI
|
33 |
- Data Validation: Pydantic
|
34 |
|
requirements.txt
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
gradio
|
2 |
-
fastapi
|
3 |
-
uvicorn
|
4 |
-
pydantic
|
5 |
-
requests
|
6 |
-
python-multipart
|
7 |
pytest==7.4.3
|
8 |
httpx==0.25.2
|
|
|
1 |
+
gradio>=4.19.2
|
2 |
+
fastapi>=0.109.2
|
3 |
+
uvicorn>=0.27.1
|
4 |
+
pydantic>=2.6.1
|
5 |
+
requests>=2.31.0
|
6 |
+
python-multipart>=0.0.9
|
7 |
pytest==7.4.3
|
8 |
httpx==0.25.2
|