Spaces:
Sleeping
Sleeping
| [project] | |
| name = "gaia-agent-final" | |
| version = "0.1.0" | |
| description = "Tool-using agent for the Hugging Face Agents Course GAIA assignment" | |
| requires-python = ">=3.11" | |
| dependencies = [ | |
| "beautifulsoup4>=4.13.0", | |
| "ddgs>=9.5.0", | |
| "faster-whisper>=1.1.0", | |
| "gradio[oauth]==5.25.2", | |
| "httpx>=0.28.0", | |
| "openpyxl>=3.1.5", | |
| "pandas>=2.2.0", | |
| "pydantic>=2.10.0", | |
| "pypdf>=5.0.0", | |
| "smolagents[litellm]>=1.22.0", | |
| "yt-dlp>=2025.6.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "mypy>=1.15.0", | |
| "pandas-stubs>=2.2.0", | |
| "pytest>=8.3.0", | |
| "pytest-cov>=6.0.0", | |
| "ruff>=0.11.0", | |
| "types-yt-dlp>=2025.0.0", | |
| ] | |
| [project.scripts] | |
| gaia-agent = "gaia_agent.cli:main" | |
| [build-system] | |
| requires = ["hatchling"] | |
| build-backend = "hatchling.build" | |
| [tool.hatch.build.targets.wheel] | |
| packages = ["src/gaia_agent"] | |
| [tool.ruff] | |
| line-length = 100 | |
| target-version = "py311" | |
| [tool.ruff.lint] | |
| select = ["E", "F", "I", "UP", "B", "SIM"] | |
| [tool.mypy] | |
| python_version = "3.12" | |
| strict = true | |
| packages = ["gaia_agent"] | |
| [[tool.mypy.overrides]] | |
| module = ["faster_whisper.*", "smolagents.*"] | |
| ignore_missing_imports = true | |
| [tool.pytest.ini_options] | |
| testpaths = ["tests"] | |