Spaces:
Runtime error
Runtime error
File size: 179 Bytes
4ac3688 |
1 2 3 4 5 6 7 8 9 10 |
import os
# Access environment variable
access_token = os.getenv("HF_TOKEN")
if access_token:
print("HF_TOKEN value:", access_token)
else:
print("HF_TOKEN is not set.")
|