fix: correct hf download command format in RKLLM docs#1579
Closed
tangzz-radxa wants to merge 2 commits intoradxa-docs:mainfrom
Closed
fix: correct hf download command format in RKLLM docs#1579tangzz-radxa wants to merge 2 commits intoradxa-docs:mainfrom
tangzz-radxa wants to merge 2 commits intoradxa-docs:mainfrom
Conversation
- Fix hf download command in _rkllm_qwen2_vl.mdx (remove https://huggingface.co/ prefix) - Fix hf download command in _rkllm-deepseek-r1.mdx (remove https://huggingface.co/ prefix) - Both fixes address the same pattern: hf download expects 'owner/repo' format, not full URL Related issues: radxa-docs#1563, radxa-docs#1562
- Fix hf download command in English version of _rkllm_qwen2_vl.mdx (remove https://huggingface.co/ prefix) - Fix hf download command in English version of _rkllm-deepseek-r1.mdx (remove https://huggingface.co/ prefix) - Both fixes address the same pattern: hf download expects 'owner/repo' format, not full URL Related issues: radxa-docs#1563, radxa-docs#1562
This was referenced Apr 3, 2026
Contributor
|
fix in #1565 |
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.
Summary
This PR fixes the
hf downloadcommand format in two RKLLM documentation files:common/dev/_rkllm_qwen2_vl.mdx(Chinese and English versions)common/dev/_rkllm-deepseek-r1.mdx(Chinese and English versions)Changes
The
hf downloadcommand expects the formatowner/repo, not a full URL. This PR removes thehttps://huggingface.co/prefix from the commands:Before:
After:
Related Issues
Testing
The fix is straightforward and follows the official
huggingface_hubCLI documentation. Thehf downloadcommand expects repository identifiers in theowner/repoformat, not full URLs.Bilingual Updates
Both Chinese (
docs/) and English (i18n/en/) versions have been updated to maintain consistency.