"""Minimal Gradio shell so the Space has an app_file — the real logic is in agent.py.""" import gradio as gr with gr.Blocks(title="GAIA Agent") as demo: gr.Markdown( """ # 🤖 GAIA Agent Source code for my HF AI Agents Course final assignment submission. See `agent.py` in the **Files** tab for the implementation. """ ) if __name__ == "__main__": demo.launch()