Spaces:
Runtime error
Runtime error
Sean-Case
commited on
Commit
•
302ada4
1
Parent(s):
30689f9
Reduced chat box height
Browse files
app.py
CHANGED
@@ -117,8 +117,9 @@ with block:
|
|
117 |
with gr.Tab("Chatbot"):
|
118 |
|
119 |
with gr.Row():
|
120 |
-
|
121 |
-
|
|
|
122 |
|
123 |
with gr.Row():
|
124 |
message = gr.Textbox(
|
|
|
117 |
with gr.Tab("Chatbot"):
|
118 |
|
119 |
with gr.Row():
|
120 |
+
chat_height = 750
|
121 |
+
chatbot = gr.Chatbot(height=chat_height)
|
122 |
+
sources = gr.HTML(value = "Source paragraphs where I looked for answers will appear here", height=chat_height)
|
123 |
|
124 |
with gr.Row():
|
125 |
message = gr.Textbox(
|