CoolFace
Apppublic

open-llm-leaderboard/open_llm_leaderboard

sourceHugging Faceapache-2.0updated 4mo agoView on Hugging Face
14klikes
Makefile14 linesDownload Raw Back to root
1.PHONY: style format2 3 4style:5	python -m black --line-length 119 .6	python -m isort .7	ruff check --fix .8 9 10quality:11	python -m black --check --line-length 119 .12	python -m isort --check-only .13	ruff check .14