Spaces:
Build error
Build error
fix simple gradio app?
Browse files- README.md +1 -1
- app.py +1 -1
- requirements.txt +5 -3
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: 🕵🏻♂️
|
|
4 |
colorFrom: indigo
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
-
sdk_version:
|
8 |
python_version: 3.10
|
9 |
app_file: app.py
|
10 |
pinned: false
|
|
|
4 |
colorFrom: indigo
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 4.44.0
|
8 |
python_version: 3.10
|
9 |
app_file: app.py
|
10 |
pinned: false
|
app.py
CHANGED
@@ -46,7 +46,7 @@ class DummyAgent:
|
|
46 |
# -----------------------------------------------------------------
|
47 |
|
48 |
|
49 |
-
def run_and_submit_all(profile: gr.OAuthProfile
|
50 |
"""
|
51 |
Fetches all questions, runs the DUMMY agent, and submits the answers.
|
52 |
"""
|
|
|
46 |
# -----------------------------------------------------------------
|
47 |
|
48 |
|
49 |
+
def run_and_submit_all(profile: gr.OAuthProfile):
|
50 |
"""
|
51 |
Fetches all questions, runs the DUMMY agent, and submits the answers.
|
52 |
"""
|
requirements.txt
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
-
gradio
|
2 |
-
|
3 |
-
|
|
|
|
|
4 |
langchain
|
5 |
langgraph
|
6 |
langchain-huggingface
|
|
|
1 |
+
gradio==4.44.0
|
2 |
+
fastapi==0.110.0
|
3 |
+
pydantic==2.7.1
|
4 |
+
starlette==0.36.3
|
5 |
+
uvicorn==0.29.0
|
6 |
langchain
|
7 |
langgraph
|
8 |
langchain-huggingface
|