Spaces:
Running
on
Zero
Running
on
Zero
aifeifei798
commited on
Upload 4 files
Browse files
app.py
CHANGED
@@ -23,8 +23,10 @@ with gr.Blocks() as demo:
|
|
23 |
with gr.Row():
|
24 |
submit_btn = gr.Button(value="GenPrompt")
|
25 |
with gr.Row():
|
26 |
-
output_text = gr.Textbox(label="Flux Prompt"
|
|
|
|
|
27 |
|
28 |
submit_btn.click(process_image, [input_img], [output_text])
|
29 |
|
30 |
-
demo.launch(
|
|
|
23 |
with gr.Row():
|
24 |
submit_btn = gr.Button(value="GenPrompt")
|
25 |
with gr.Row():
|
26 |
+
output_text = gr.Textbox(label="Flux Prompt",
|
27 |
+
show_label=False,
|
28 |
+
container=False)
|
29 |
|
30 |
submit_btn.click(process_image, [input_img], [output_text])
|
31 |
|
32 |
+
demo.launch()
|