Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -256,10 +256,10 @@ with gr.Blocks() as demo:
|
|
256 |
with gr.Row():
|
257 |
with gr.Column(scale=5):
|
258 |
textbox = gr.Textbox(placeholder="π€ Enter your prompt (up to 200 characters)", lines=2, max_lines=5)
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
|
264 |
# ...
|
265 |
|
|
|
256 |
with gr.Row():
|
257 |
with gr.Column(scale=5):
|
258 |
textbox = gr.Textbox(placeholder="π€ Enter your prompt (up to 200 characters)", lines=2, max_lines=5)
|
259 |
+
submit_btn = gr.Button(value="π Send")
|
260 |
+
with gr.Row():
|
261 |
+
regenerate_btn = gr.Button(value="π Regenerate")
|
262 |
+
reset_btn = gr.Button(value="ποΈ Reset")
|
263 |
|
264 |
# ...
|
265 |
|