eienmojiki's picture
Update app.py
ab3ccf8 verified
raw
history blame
379 Bytes
import gradio as gr
from utils.t2i import t2i_gen
with gr.Blocks(
title="πŸͺ„ LayerDiffuse - Flux version β˜”",
theme="CultriX/gradio-theme"
) as demo:
prompt = gr.Text(
label="Prompt",
info="Your prompt here",
placeholder="E.g: glass bottle, high quality"
)
if __name__ == "__main__":
demo.queue(max_size=20).launch(show_error=True)