Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -67,12 +67,9 @@ def generate_random_images():
|
|
67 |
with gr.Blocks(title="SD Models") as my_interface:
|
68 |
with gr.Column(scale=12):
|
69 |
with gr.Row():
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
with gr.Row():
|
74 |
-
run = gr.Button("Run", variant="primary")
|
75 |
-
clear_btn = gr.Button("Clear")
|
76 |
with gr.Row():
|
77 |
sd_outputs = {}
|
78 |
model_idx = 1
|
|
|
67 |
with gr.Blocks(title="SD Models") as my_interface:
|
68 |
with gr.Column(scale=12):
|
69 |
with gr.Row():
|
70 |
+
primary_prompt = gr.Textbox(label="Prompt", value="")
|
71 |
+
run = gr.Button("Run", variant="primary")
|
72 |
+
clear_btn = gr.Button("Clear")
|
|
|
|
|
|
|
73 |
with gr.Row():
|
74 |
sd_outputs = {}
|
75 |
model_idx = 1
|