gaia-agent / app.py
DannyJun's picture
Initial commit: GAIA agent code for AI Agents Course final
2a5f443 verified
raw
history blame contribute delete
421 Bytes
"""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()