Spaces:
Sleeping
Sleeping
Delete app.py
Browse files
app.py
DELETED
|
@@ -1,14 +0,0 @@
|
|
| 1 |
-
import gradio as gr
|
| 2 |
-
from agent import GaiaAgent
|
| 3 |
-
from run import run_and_submit_all # Adjusted if you moved out of `gaia_benchmark`
|
| 4 |
-
|
| 5 |
-
agent = GaiaAgent()
|
| 6 |
-
|
| 7 |
-
with gr.Blocks() as demo:
|
| 8 |
-
gr.Markdown("# GAIA Agent Evaluation")
|
| 9 |
-
btn = gr.Button("Run Evaluation & Submit All Answers")
|
| 10 |
-
result = gr.Textbox(label="Submission Result")
|
| 11 |
-
|
| 12 |
-
btn.click(fn=lambda: run_and_submit_all(agent), outputs=result)
|
| 13 |
-
|
| 14 |
-
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|