Spaces:
Runtime error
Runtime error
File size: 1,304 Bytes
2705160 5f6e259 e3a8460 2705160 7fb5b3c 2705160 d123508 2705160 cb13db3 182e77f ec93567 182e77f ec93567 8c16572 dc47641 ec93567 84c7ca2 4f70efd ec93567 cb13db3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | ---
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"
``` |