Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -67,14 +67,15 @@ with gr.Blocks(
|
|
67 |
format="jpeg",
|
68 |
interactive=False
|
69 |
)
|
70 |
-
with gr.
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
|
|
78 |
|
79 |
with gr.Tab("💡 Examples"):
|
80 |
examples = gr.Examples(
|
|
|
67 |
format="jpeg",
|
68 |
interactive=False
|
69 |
)
|
70 |
+
with gr.Group():
|
71 |
+
with gr.Row(equal_height=True):
|
72 |
+
prompt = gr.Textbox(
|
73 |
+
label="Prompt",
|
74 |
+
show_label=False,
|
75 |
+
placeholder="Enter your prompt..",
|
76 |
+
max_lines=1
|
77 |
+
)
|
78 |
+
btn = gr.Button("Generate", variant="primary")
|
79 |
|
80 |
with gr.Tab("💡 Examples"):
|
81 |
examples = gr.Examples(
|