Spaces:
Running
Running
File size: 236 Bytes
fcf8ddd |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
from huggingface_hub import HfApi
if __name__ == "__main__":
api = HfApi()
api.restart_space(
repo_id="mozilla-ai/document-to-podcast",
token=os.getenv("HF_TOKEN"),
factory_reboot=True,
)
|