import gradio as gr
# Load and launch the RunwayML model using Gradio
iface = gr.Interface.load("models/runwayml/stable-diffusion-v1-5")
# Custom HTML and CSS for styling
custom_html = """
Stable Diffusion Model
{input}
{output}
"""
# Set the custom HTML and launch the interface
iface.share(html=custom_html)