Spaces:
Runtime error
Runtime error
File size: 234 Bytes
ccb6afe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import gradio as gr
from interface import create_interface
gr.close_all()
demo = create_interface()
if __name__ == "__main__":
demo.launch(
server_name="localhost",
server_port=7860,
# share=True
)
|