Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -70,6 +70,12 @@ def generate_response(selected_question):
|
|
70 |
return chat_history
|
71 |
|
72 |
with gr.Blocks() as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
chatbot = gr.Chatbot(
|
74 |
initialize_chat(),
|
75 |
elem_id="chatbot",
|
|
|
70 |
return chat_history
|
71 |
|
72 |
with gr.Blocks() as demo:
|
73 |
+
gr.Markdown(
|
74 |
+
"""
|
75 |
+
# Hello World!
|
76 |
+
Start typing below to see the output.
|
77 |
+
""")
|
78 |
+
|
79 |
chatbot = gr.Chatbot(
|
80 |
initialize_chat(),
|
81 |
elem_id="chatbot",
|