savantripathi's picture
added more files
c3fc3ae verified
Raw
History Blame Contribute Delete
377 Bytes
from huggingface_hub import login, whoami
import os
# Replace with your actual token from https://huggingface.co/settings/tokens
HF_TOKEN = os.environ.get("HF_TOKEN")
try:
login(token=HF_TOKEN)
user_info = whoami()
print(f"\n[SUCCESS] Authenticated as: {user_info['name']}")
except Exception as e:
print(f"\n[LOGIC ERROR] Authentication Failed: {e}")