Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,004 Bytes
d1fe325 bf4d50c d1fe325 1d28680 d1fe325 8c49cb6 a784eb3 |
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 |
[project]
name = "open-japanese-llm-leaderboard"
version = "0.1.0"
description = ""
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"apscheduler>=3.10.4",
"datasets>=3.0.1",
"gradio>=5.3.0",
"hf-transfer>=0.1.8",
"plotly>=5.24.1",
"transformers>=4.45.2",
]
[tool.ruff]
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
select = ["E", "F"]
ignore = ["E501"] # line too long (black is taking care of this)
line-length = 119
fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TCH", "TID", "TRY", "UP", "YTT"]
[tool.isort]
profile = "black"
line_length = 119
[tool.black]
line-length = 119
[tool.uv.sources]
gradio = { url = "https://gradio-pypi-previews.s3.amazonaws.com/7a4b272f9c24d9ef30c24991091687936de63148/gradio-5.3.0-py3-none-any.whl" }
|