Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -27,6 +27,10 @@ demo = gr.Interface(
|
|
| 27 |
inputs=gr.Text(label="Image URL"),
|
| 28 |
outputs=gr.Video()
|
| 29 |
)
|
|
|
|
|
|
|
| 30 |
|
|
|
|
| 31 |
demo.launch()
|
|
|
|
| 32 |
# trigger rebuild
|
|
|
|
| 27 |
inputs=gr.Text(label="Image URL"),
|
| 28 |
outputs=gr.Video()
|
| 29 |
)
|
| 30 |
+
from huggingface_hub import login
|
| 31 |
+
import os
|
| 32 |
|
| 33 |
+
login(token=os.environ.get("HF_TOKEN"))
|
| 34 |
demo.launch()
|
| 35 |
+
|
| 36 |
# trigger rebuild
|