ASesYusuf1's picture
Update app.py
a1b203b verified
raw
history blame contribute delete
234 Bytes
import gradio as gr
from gui import create_interface
interface = create_interface()
# Use share=True for public access or server_name="127.0.0.1" for local testing
interface.launch(server_name="0.0.0.0", server_port=7860, share=True)