Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -98,10 +98,10 @@ with gr.Blocks() as demo:
|
|
| 98 |
placeholder="Enter text, or upload an image or audio", lines=2, label="Query", value=None, scale = 4
|
| 99 |
)
|
| 100 |
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
|
| 106 |
submit.click(
|
| 107 |
add_content,
|
|
|
|
| 98 |
placeholder="Enter text, or upload an image or audio", lines=2, label="Query", value=None, scale = 4
|
| 99 |
)
|
| 100 |
|
| 101 |
+
with gr.Row():
|
| 102 |
+
# Adding a Button
|
| 103 |
+
submit = gr.Button(value = "Submit", variant="primary")
|
| 104 |
+
clear = gr.Button(value="Clear")
|
| 105 |
|
| 106 |
submit.click(
|
| 107 |
add_content,
|