docs: fix stale provider count and missing huggingface - #3
Open
BryanZaneee wants to merge 1 commit into
Open
Conversation
PROVIDERS in src/llmbench/config.py has 24 keys, not 20, and the huggingface entry (raises the leaderboard rate limit) was missing from both the README table and the site's provider chip list. Bring both copies in line with the actual dict.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context
The README and the marketing site both claimed llmbench knows "twenty
providers" by name, and the site's provider chip list was missing
huggingface. Both copies had drifted fromsrc/llmbench/config.py.Description
Counted the keys in
PROVIDERSinsrc/llmbench/config.pydirectly:24 entries, including
huggingface(used only to raise the leaderboardrate limit, not a model provider). Updated the two prose mentions of
the count and added
huggingfacewherever the other providers areenumerated.
Changes in the codebase
README.md: "Twenty providers" → "Twenty-four providers"; added anOtherrow to the provider table forhuggingface.web/index.html: "Twenty providers" → "Twenty-four providers";added a
huggingfacechip to the provider chip list.Changes outside the codebase
None.
Additional information
Verified with
.venv/bin/pytest -q(45 passed) and.venv/bin/ruff check .(all checks passed).Checklist