Commit ·
9d7bf0f
1
Parent(s): cd6b335
update app title and add timm to requirements
Browse files- app.py +1 -1
- requirements.txt +2 -0
app.py
CHANGED
|
@@ -1361,7 +1361,7 @@ def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
| 1361 |
except Exception as e: return f"Submission Failed: {e}", pd.DataFrame(results_log_for_gradio)
|
| 1362 |
|
| 1363 |
with gr.Blocks(title="GAIA RAG Agent - Advanced") as demo:
|
| 1364 |
-
gr.Markdown("#
|
| 1365 |
gr.Markdown(
|
| 1366 |
"""
|
| 1367 |
**Instructions:**
|
|
|
|
| 1361 |
except Exception as e: return f"Submission Failed: {e}", pd.DataFrame(results_log_for_gradio)
|
| 1362 |
|
| 1363 |
with gr.Blocks(title="GAIA RAG Agent - Advanced") as demo:
|
| 1364 |
+
gr.Markdown("# AGENT")
|
| 1365 |
gr.Markdown(
|
| 1366 |
"""
|
| 1367 |
**Instructions:**
|
requirements.txt
CHANGED
|
@@ -10,9 +10,11 @@ lxml
|
|
| 10 |
tavily-python
|
| 11 |
transformers
|
| 12 |
torch
|
|
|
|
| 13 |
librosa
|
| 14 |
openpyxl
|
| 15 |
pdfplumber
|
| 16 |
tabulate
|
| 17 |
Pillow
|
|
|
|
| 18 |
opencv-python
|
|
|
|
| 10 |
tavily-python
|
| 11 |
transformers
|
| 12 |
torch
|
| 13 |
+
timm
|
| 14 |
librosa
|
| 15 |
openpyxl
|
| 16 |
pdfplumber
|
| 17 |
tabulate
|
| 18 |
Pillow
|
| 19 |
+
yt-dlp
|
| 20 |
opencv-python
|