Fooocus / app.py
piralocoplasticone's picture
Create app.py
9778c43
raw
history blame
333 Bytes
import gradio as gr
# Import your entry script - adjust this line as per your script's structure
from entry_with_update import create_interface
# Initialize your Gradio interface - this function call will depend on your script
interface = create_interface()
# Launch the interface
if __name__ == "__main__":
interface.launch()