import gradio as gr # Load the model model = gr.load("models/Lykon/dreamshaper-xl-turbo") # Customize the interface iface = gr.Interface( fn=model, title="", description="", inputs="text", outputs="image", # Set outputs to "image" for image output ) # Launch the customized interface iface.launch()