Spaces:
Running
Running
File size: 345 Bytes
0ac505b b369b7e 0ac505b |
1 2 3 4 5 6 7 8 9 10 |
import os
from lmmvibes.vis_gradio.app import launch_app
# Launch the app for Hugging Face Spaces
if __name__ == "__main__":
# Optimize HF cache to persistent storage in Spaces
if os.path.isdir("/data"):
os.environ.setdefault("HF_HOME", "/data/.huggingface")
launch_app(share=False, server_name="0.0.0.0", server_port=7860) |