Kokoro-FastAPI/ui/app.py

9 lines
206 B
Python

from lib.interface import create_interface
if __name__ == "__main__":
demo = create_interface()
demo.launch(
server_name="0.0.0.0",
server_port=7860,
show_error=True
)