DreamshaperXL / app.py
mrbeliever's picture
Update app.py
82101dc verified
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()