mirror of
https://github.com/exo-explore/exo.git
synced 2026-04-18 04:52:40 -04:00
## Motivation Following the changes made in #1632 ! Closes #1020 ## Changes <!-- Describe what you changed in detail --> ## Why It Works <!-- Explain why your approach solves the problem --> ## Test Plan ### Manual Testing <!-- Hardware: (e.g., MacBook Pro M1 Max 32GB, Mac Mini M2 16GB, connected via Thunderbolt 4) --> <!-- What you did: --> <!-- - --> ### Automated Testing <!-- Describe changes to automated tests, or how existing tests cover this change --> <!-- - --> --------- Co-authored-by: Evan Quiney <evanev7@gmail.com>
24 lines
504 B
TOML
24 lines
504 B
TOML
[project]
|
|
name = "exo-bench"
|
|
version = "0.1.0"
|
|
description = "Benchmarking tool for exo distributed inference"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"httpx>=0.27.0",
|
|
"loguru>=0.7.3",
|
|
"transformers>=5.0.0",
|
|
"huggingface-hub>=0.33.4",
|
|
"tiktoken>=0.12.0",
|
|
"jinja2>=3.1.0",
|
|
"protobuf>=5.29.0",
|
|
"datasets>=2.0.0",
|
|
"math-verify>=0.7.0",
|
|
"lm-eval[api,math]>=0.4.0",
|
|
"human-eval>=1.0.3",
|
|
"numpy>=1.24.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|