Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 759 Bytes
970eef1 |
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 |
[tool.poetry]
name = "llm-leaderboard-backend"
version = "0.1.0"
description = "Backend for the Open LLM Leaderboard"
authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
fastapi = "^0.115.6"
huggingface-hub = "0.29.3"
python-dotenv = "^1.0.1"
python-multipart = "^0.0.9"
uvicorn = {extras = ["standard"], version = "^0.27.0"}
loguru = "^0.7.3"
lighteval = {version = ">=0.8.0", extras = ["math"]}
tqdm = "^4.67.1"
asyncio = "^3.4.3"
datasets = "^3.3.0"
yourbench = {git = "https://github.com/huggingface/yourbench.git"}
tiktoken = "^0.9.0"
requests = {extras = ["socks"], version = "^2.32.3"}
httpx-socks = "^0.10.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|