from inpaint_zoom.zoom_out_app import stable_diffusion_text2img_app import gradio as gr app = gr.Blocks() with app: gr.HTML( """

Stable Diffusion Infinite Zoom Out

""" ) gr.Markdown( """

Follow me for more! Twitter | Github | Linkedin

""" ) with gr.Row(): with gr.Column(): with gr.Tab('Zoom Out'): stable_diffusion_text2img_app() with gr.Tab('Zoom In'): pass app.launch(debug=True)