Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -82,7 +82,7 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme', css=css) as app:
|
|
| 82 |
with gr.Row():
|
| 83 |
with gr.Column(elem_id="prompt-container"):
|
| 84 |
with gr.Row():
|
| 85 |
-
text_prompt = gr.Textbox(label="Prompt", placeholder="Enter a prompt here", lines=2, elem_id="prompt-text-input")
|
| 86 |
with gr.Row():
|
| 87 |
custom_lora = gr.Textbox(label="Custom LoRA", info="LoRA Hugging Face path (optional)", placeholder="multimodalart/vintage-ads-flux")
|
| 88 |
with gr.Row():
|
|
@@ -98,7 +98,8 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme', css=css) as app:
|
|
| 98 |
text_button = gr.Button("Run", variant='primary', elem_id="gen-button")
|
| 99 |
with gr.Row():
|
| 100 |
image_output = gr.Image(type="pil", label="Image Output", elem_id="gallery")
|
| 101 |
-
|
|
|
|
| 102 |
|
| 103 |
gr.Examples(
|
| 104 |
examples = examples,
|
|
|
|
| 82 |
with gr.Row():
|
| 83 |
with gr.Column(elem_id="prompt-container"):
|
| 84 |
with gr.Row():
|
| 85 |
+
text_prompt = gr.Textbox(label="Prompt", placeholder="Enter a prompt here", lines=2, show_copy_button = True, elem_id="prompt-text-input")
|
| 86 |
with gr.Row():
|
| 87 |
custom_lora = gr.Textbox(label="Custom LoRA", info="LoRA Hugging Face path (optional)", placeholder="multimodalart/vintage-ads-flux")
|
| 88 |
with gr.Row():
|
|
|
|
| 98 |
text_button = gr.Button("Run", variant='primary', elem_id="gen-button")
|
| 99 |
with gr.Row():
|
| 100 |
image_output = gr.Image(type="pil", label="Image Output", elem_id="gallery")
|
| 101 |
+
with gr.Row():
|
| 102 |
+
seed_output = gr.Textbox(label="Seed Used", show_copy_button = True, elem_id="seed-output")
|
| 103 |
|
| 104 |
gr.Examples(
|
| 105 |
examples = examples,
|