File size: 349 Bytes
534df99 | 1 2 3 4 5 6 7 8 9 10 11 | import config
print("=== Configuration Check ===")
print(f"HF_TOKEN loaded: {bool(config.HF_TOKEN)}")
if config.HF_TOKEN:
print(f"HF_TOKEN value: {config.HF_TOKEN[:10]}... (length: {len(config.HF_TOKEN)})")
else:
print("HF_TOKEN: NOT SET!")
print("\nPlease add HF_TOKEN to your .env file:")
print("HF_TOKEN=your-huggingface-token")
|