FrankHUP's picture
local and hg setup
aaccd1d
raw
history blame contribute delete
224 Bytes
from __future__ import annotations
from env import IS_HF_SPACE
if IS_HF_SPACE:
import spaces # noqa: F401
from app_ui import build_demo
demo = build_demo()
if __name__ == "__main__":
demo.launch(ssr_mode=False)