-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (94 loc) · 2.23 KB
/
pyproject.toml
File metadata and controls
98 lines (94 loc) · 2.23 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "routerarena"
version = "0.1.0"
description = "RouterArena - LLM Router Evaluation Framework"
requires-python = ">3.10,<3.13"
dependencies = [
# Core LLM API Clients
"openai>=1.69.0",
"anthropic>=0.68.0",
"google-generativeai>=0.8.5",
"mistralai>=1.9.10",
"together>=1.5.25",
# Cloud Providers
"boto3>=1.40.31",
"botocore>=1.40.31",
# Additional LLM Providers
"xai-sdk>=1.2.0",
"zhipuai>=2.1.5",
"openrouter>=0.0.15",
"replicate>=0.30.0",
# Data Processing
"datasets>=4.0.0",
"pandas>=2.3.2",
"numpy>=2.2.6",
"pyarrow>=21.0.0",
# Utilities
"tqdm>=4.67.1",
"tiktoken>=0.8.0",
"requests>=2.32.5",
"python-dotenv>=1.1.1",
# Text Processing
"regex>=2025.9.1",
"jieba>=0.42.1",
"fuzzywuzzy>=0.18.0",
"python-Levenshtein>=0.21.0",
# Evaluation Metrics
"rouge>=1.0.1",
# Hugging Face
"huggingface-hub>=0.34.4",
"transformers>=4.56.1",
"tokenizers>=0.22.0",
"accelerate>=1.10.1",
"safetensors>=0.6.2",
"peft>=0.17.1",
# Math and Symbolic Computation
"sympy>=1.13.1",
"latex2sympy2>=1.9.1",
"mpmath>=1.3.0",
# PyTorch (with CUDA support)
"torch>=2.5.1",
"torchvision>=0.19.1",
"torchaudio>=2.4.1",
# Other Dependencies
"aiohttp>=3.12.4",
"pydantic>=2.11.7",
"pyyaml>=6.0.2",
"jinja2>=3.1.4",
"certifi>=2025.8.3",
"urllib3>=2.5.0",
"filelock>=3.19.1",
"fsspec>=2025.3.0",
"packaging>=25.0",
"typing-extensions>=4.15.0",
# Additional Utilities
"rich>=14.1.0",
"click>=8.1.8",
"typer>=0.15.4",
"python-multipart>=0.0.18",
"sortedcontainers>=2.4.0",
# Optimizations
"optimum>=1.27.0",
"sentencepiece>=0.2.1",
# Special Dependencies
"notdiamond>=0.4.5",
"lxml>=6.0.1",
"openpyxl>=3.1.5",
"xlrd>=2.0.2",
"word2number>=1.1",
"pre-commit>=4.4.0",
]
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.uv]
dev-dependencies = []
[tool.mypy]
plugins = ['pydantic.mypy']
ignore_missing_imports = true
check_untyped_defs = true
follow_imports = "silent"
namespace_packages = true
explicit_package_bases = true