File size: 337 Bytes
8b8526d
b67e2e5
 
 
 
 
 
 
 
 
3068aa9
 
b67e2e5
3068aa9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr
from gaia_submit import run_agent_on_all_questions  # ← importe ta fonction

# UI de Gradio
demo = gr.Interface(
    fn=run_agent_on_all_questions,
    inputs=[],
    outputs="textbox",
    title="GAIA Final Agent",
    description="Cet agent répond aux questions GAIA et envoie au leaderboard."
)

demo.launch()