mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
205cd700c8
* first commit to tau2-bench * tau2-bench agent * tau2 agent * add condition * checkpoint * bug fix * add tests * fix tests * add comments * add comments * minor fix * fix * batch test script * . * init.bak -> init.py * fix mypy * update readme * fix env * remove temp files * setup tests * fix gaia tasks * fix tau2 tests * fix coverage * fix default version * update cookiecutter template --------- Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com>
86 lines
2.4 KiB
TOML
86 lines
2.4 KiB
TOML
[project]
|
|
name = "agent-framework-lab-gaia"
|
|
description = "GAIA benchmark module for Microsoft Agent Framework."
|
|
authors = [{ name = "Microsoft", email = "SK-Support@microsoft.com"}]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
version = "0.1.0b1"
|
|
license-files = ["LICENSE"]
|
|
urls.homepage = "https://learn.microsoft.com/en-us/semantic-kernel/overview/"
|
|
urls.source = "https://github.com/microsoft/agent-framework/tree/main/python"
|
|
urls.release_notes = "https://github.com/microsoft/agent-framework/releases?q=tag%3Apython-1&expanded=true"
|
|
urls.issues = "https://github.com/microsoft/agent-framework/issues"
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"Development Status :: 2 - Pre-Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
]
|
|
dependencies = [
|
|
"agent-framework",
|
|
"pydantic>=2.0.0",
|
|
"opentelemetry-api>=1.24.0",
|
|
"tqdm>=4.60.0",
|
|
"huggingface-hub>=0.20.0",
|
|
"orjson>=3.8.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
gaia_viewer = "agent_framework_lab_gaia:viewer_main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=64", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["agent_framework_lab_gaia", "agent_framework.lab.gaia"]
|
|
|
|
[tool.setuptools.package-data]
|
|
agent_framework_lab_gaia = ["py.typed"]
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
target-version = "py310"
|
|
extend-exclude = ["tests", "__pycache__"]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "W", "UP", "C4", "N"]
|
|
ignore = ["N803", "N806", "N999", "UP007"]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
strict = true
|
|
check_untyped_defs = true
|
|
disallow_untyped_defs = true
|
|
disallow_incomplete_defs = true
|
|
disallow_untyped_decorators = true
|
|
warn_redundant_casts = true
|
|
warn_unused_ignores = true
|
|
warn_return_any = true
|
|
warn_unreachable = true
|
|
show_error_codes = true
|
|
implicit_reexport = true
|
|
packages = ["agent_framework_lab_gaia"]
|
|
|
|
[tool.poe]
|
|
executor.type = "uv"
|
|
include = "../../../shared_tasks.toml"
|
|
|
|
[tool.poe.tasks]
|
|
test = "pytest --cov=agent_framework_lab_gaia --cov-report=term-missing:skip-covered tests"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|
|
addopts = "--strict-markers --strict-config"
|
|
markers = [
|
|
"unit: marks tests as unit tests",
|
|
"integration: marks tests as integration tests",
|
|
] |