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")