Spaces:
Runtime error
Runtime error
File size: 562 Bytes
322b74c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from huggingface_hub import HfApi
import os
def restart_space():
token = os.environ['HF_TOKEN'] # Please navigate to Settings > Secrets and variables > Actions and define "HF_TOKEN".
repo_id = "gxurxv/optimus-metrics" # Please replace this value with the name of your own Hugging Face Space.
try:
HfApi().restart_space(repo_id=repo_id, token=token)
print(f"Successfully restarted Space: {repo_id}")
except Exception as e:
print(f"Failed to restart Space {repo_id}: {e}")
if __name__ == "__main__":
restart_space()
|