Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -5,10 +5,11 @@ def greet(name, intensity):
|
|
5 |
|
6 |
with gr.Blocks() as demo:
|
7 |
with gr.Row():
|
8 |
-
with gr.Column(scale=
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
gr.
|
13 |
-
|
|
|
14 |
demo.launch()
|
|
|
5 |
|
6 |
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 |
+
btn1 = gr.Button("Submit")
|
11 |
+
btn2 = gr.Button("Clear")
|
12 |
+
btn3 = gr.Button("Clean Memory")
|
13 |
+
with gr.Column(scale=2):
|
14 |
+
gr.Text(lines=15, label="Output", scale=2)
|
15 |
demo.launch()
|