Spaces:
Running
Running
File size: 282 Bytes
6121f8b |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import os
from huggingface_hub import HfApi
# Info to change for your repository
# ----------------------------------
HF_TOKEN = os.environ.get("HF_TOKEN")
SAHARA_DATA = os.environ.get("SAHARA_DATA")
SAHARA_RESULTS = os.environ.get("SAHARA_RESULTS")
API = HfApi(token=HF_TOKEN)
|