--- title: Agent Course Final Assignment - Lwant emoji: 🚀🎓 colorFrom: red colorTo: yellow python_version: 3.13 sdk: gradio sdk_version: 5.25.2 app_file: src/gaia_solving_agent/app.py pinned: false hf_oauth: true # optional, default duration is 8 hours/480 minutes. Max duration is 30 days/43200 minutes. hf_oauth_expiration_minutes: 480 --- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference # Agent course final assignement ## What do I want to do? Orchestration / steps : - [x] Load additional file - [x] Analyze the user query, make a plan - [x] (Multi-agent step) - [x] Plan the tools to gather external resources - [x] Analyze resources and summarize learnings - [x] Answer the question - [x] Parse the result in the response format Tools : - [x] Web search - [x] Url requests - [x] Wikipedia - [x] Image queries - [ ] Video queries - [x] Video audio transcripts - [x] Website parser - [x] Text chunker ==> via LoadAndSearchToolSpec ## Install ## LlamaIndex observability ```python from gaia_solving_agent.telemetry import set_telemetry set_telemetry() # Run your agent ... ``` ## Troubleshouting ### Debug log level for OPENAPI like ```bash export OPENAI_LOG=debug ``` ```python import os os.environ["OPENAI_LOG"] = "debug" ```