Lisa Dunlap
fixed margins
b369b7e
raw
history blame contribute delete
345 Bytes
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)