File size: 169 Bytes
897d5bd
 
 
 
 
 
 
1
2
3
4
5
6
7
8
"""HF Spaces entrypoint. The real app lives in the `echo` package."""
from echo.app import build_demo

demo = build_demo()

if __name__ == "__main__":
    demo.launch()