Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,9 +7,10 @@ with gr.Blocks() as demo:
|
|
7 |
with gr.Row():
|
8 |
with gr.Column(scale=2):
|
9 |
text1 = gr.Textbox(lines=7, label="Prompt", scale=2)
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
13 |
with gr.Column(scale=2):
|
14 |
gr.Text(lines=15, label="Output", scale=2)
|
15 |
demo.launch()
|
|
|
7 |
with gr.Row():
|
8 |
with gr.Column(scale=2):
|
9 |
text1 = gr.Textbox(lines=7, label="Prompt", scale=2)
|
10 |
+
with gr.Row():
|
11 |
+
btn1 = gr.Button("Submit", scale=1)
|
12 |
+
btn2 = gr.Button("Clear", scale=1)
|
13 |
+
btn3 = gr.Button("Clean Memory", scale=2)
|
14 |
with gr.Column(scale=2):
|
15 |
gr.Text(lines=15, label="Output", scale=2)
|
16 |
demo.launch()
|