Spaces:
Runtime error
Runtime error
| import os | |
| from huggingface_hub import HfApi | |
| # Info to change for your repository | |
| # ---------------------------------- | |
| TOKEN = os.environ.get("TOKEN") # A read/write token for your org | |
| # ---------------------------------- | |
| REPO_ID = f"yale-nlp/InstruSumEval" | |
| # If you setup a cache later, just change HF_HOME | |
| CACHE_PATH=os.getenv("HF_HOME", ".") | |
| API = HfApi(token=TOKEN) | |