Issue #23 Fix: Use logged in hf token using huggingface_hub.get_token() instead of requiring env variable#34
Open
vortezwohl wants to merge 4 commits intohuggingface:mainfrom
Open
Conversation
added 2 commits
April 18, 2026 18:02
Add a shared Hugging Face token helper that keeps HF_TOKEN as the first local token source and then falls back to huggingface_hub.get_token(). Reuse the helper in the CLI and backend session creation so local HF login works without duplicating cache lookup logic.
Update the quick start token setup notes to mention that HF_TOKEN is optional when a Hugging Face CLI login token is available. Keep the existing environment variable flow while documenting the new login-cache fallback behavior.
huggingface_hub.get_token() instead of requiring env variable
Author
|
conflict resolved |
Collaborator
|
@claude please review this PR. Focus on correctness, security, LiteLLM/Bedrock routing impact, and whether it's safe to merge against current main. Keep it concise and prefer inline comments where it matters. |
|
I'll analyze this and get back to you. |
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
HF_TOKENas the first local token source and falls back tohuggingface_hub.get_token()huggingface-cli logindo not need to setHF_TOKENTest plan
python -m py_compile agent\utils\hf_auth.py agent\main.py backend\routes\agent.pyHF_TOKENtakes precedence overhuggingface_hub.get_token()Fixes #23