DeepLearning101
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ custom_css = """
|
|
29 |
margin-bottom: 10px;
|
30 |
}
|
31 |
#chatbot {
|
32 |
-
height:
|
33 |
overflow-y: auto;
|
34 |
background: #f7f7f7;
|
35 |
border-radius: 10px;
|
@@ -203,9 +203,9 @@ examples = [
|
|
203 |
]
|
204 |
|
205 |
with gr.Blocks(css=custom_css) as iface:
|
206 |
-
gr.HTML(
|
207 |
-
gr.HTML(
|
208 |
-
gr.HTML(
|
209 |
with gr.Row():
|
210 |
chatbot = gr.Chatbot(elem_id="chatbot")
|
211 |
|
|
|
29 |
margin-bottom: 10px;
|
30 |
}
|
31 |
#chatbot {
|
32 |
+
height: 300px;
|
33 |
overflow-y: auto;
|
34 |
background: #f7f7f7;
|
35 |
border-radius: 10px;
|
|
|
203 |
]
|
204 |
|
205 |
with gr.Blocks(css=custom_css) as iface:
|
206 |
+
gr.HTML(TITLE)
|
207 |
+
gr.HTML(SUBTITLE)
|
208 |
+
gr.HTML(LINKS)
|
209 |
with gr.Row():
|
210 |
chatbot = gr.Chatbot(elem_id="chatbot")
|
211 |
|