-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.02 KB
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
[project]
name = "model-evaluation"
version = "0.1.0"
description = "Local LLM evaluation harness comparing self-hosted models to commercial APIs."
authors = [
{ name = "Model Evaluation Team" }
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"accelerate>=0.27.2",
"datasets>=2.17.0",
"evaluate>=0.4.1",
"httpx>=0.27.0",
"numpy>=1.26.0",
"pandas>=2.2.0",
"pydantic>=2.6.0",
"pyyaml>=6.0.1",
"rich>=13.7.0",
"scikit-learn>=1.4.0",
"sentencepiece>=0.1.99",
"tiktoken>=0.6.0",
"transformers[torch]>=4.38.1",
"typer>=0.12.0",
]
[project.optional-dependencies]
openai = ["openai>=1.12.0"]
anthropic = ["anthropic>=0.23.1"]
api = ["fastapi>=0.111.0", "uvicorn>=0.30.0"]
[project.scripts]
llm-eval = "llm_eval.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/llm_eval"]
[tool.hatch.build.targets.sdist]
include = ["src/llm_eval", "README.md", "pyproject.toml", "configs", "data"]