Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -89,7 +89,7 @@ with gr.Blocks() as demo:
|
|
89 |
with gr.Row():
|
90 |
chatbot = gr.Chatbot(
|
91 |
avatar_images=("🧑", "🤖"),
|
92 |
-
height=
|
93 |
)
|
94 |
|
95 |
with gr.Row():
|
@@ -98,10 +98,10 @@ with gr.Blocks() as demo:
|
|
98 |
placeholder="Ask anything", lines=2, label="Query", value=None, scale = 4
|
99 |
)
|
100 |
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
|
106 |
submit.click(
|
107 |
add_content,
|
|
|
89 |
with gr.Row():
|
90 |
chatbot = gr.Chatbot(
|
91 |
avatar_images=("🧑", "🤖"),
|
92 |
+
height=560,
|
93 |
)
|
94 |
|
95 |
with gr.Row():
|
|
|
98 |
placeholder="Ask anything", 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,
|