31 lines
735 B
TOML
31 lines
735 B
TOML
[project]
|
|
|
|
name = "haiku.rag-evals"
|
|
description = "Benchmarking and evaluation scripts for haiku.rag"
|
|
version = "0.33.2"
|
|
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
|
|
license = { text = "MIT" }
|
|
requires-python = ">=3.12"
|
|
|
|
dependencies = [
|
|
"haiku.rag-slim",
|
|
"pydantic-ai-slim[evals,logfire]>=1.66.0",
|
|
"datasets>=4.6.1",
|
|
"huggingface_hub>=0.20.0",
|
|
"typer>=0.21.0,<0.22.0",
|
|
"python-dotenv>=1.2.2",
|
|
"gepa>=0.1.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
evaluations = "evaluations.benchmark:app"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["evaluations"]
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = ["haiku", "evaluations"]
|