FD900 commited on
Commit
d9f9fc0
·
verified ·
1 Parent(s): 944cf3f

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -14
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()