kora-synth / app.py
LeonceNsh's picture
Upload folder using huggingface_hub
26cf0a8 verified
raw
history blame contribute delete
221 Bytes
from gradio_app import create_interface
if __name__ == "__main__":
demo = create_interface()
demo.launch(
server_name="0.0.0.0",
server_port=7860,
share=True,
show_error=True
)