- proxy/go.mod: github.com/ardenone/zai-proxy → git.ardenone.com/jedarden/zai-proxy - dashboard/go.mod: github.com/ardenone/ardenone-cluster/containers/zai-proxy-dashboard → git.ardenone.com/jedarden/zai-proxy/dashboard - Update all Go import paths in proxy/ and dashboard/ to match new module paths - Add proxy/evaluation/ package (was missing from initial commit) - Add docs/plan/plan.md with architecture, security model, telemetry design, and migration checklist Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
564 B
TOML
26 lines
564 B
TOML
[project]
|
|
name = "zai-evaluation"
|
|
version = "0.1.0"
|
|
description = "Evaluation framework comparing z.ai proxy vs Anthropic API token counts"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"httpx>=0.27.0",
|
|
"pandas>=2.2.0",
|
|
"numpy>=1.26.0",
|
|
"scipy>=1.13.0",
|
|
"rich>=13.7.0",
|
|
"typer>=0.9.0",
|
|
"pydantic>=2.6.0",
|
|
"python-dotenv>=1.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
zai-eval = "zai_eval.cli:app"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["zai_eval"]
|