Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -126,8 +126,11 @@ description = """
|
|
126 |
# 6. Use Gradio to pull it all together
|
127 |
with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|
128 |
#chatbot {height: 520px; overflow: auto;}""") as demo:
|
|
|
|
|
129 |
gr.HTML(title)
|
130 |
-
|
|
|
131 |
with gr.Column(elem_id = "col_container"):
|
132 |
chatbot = gr.Chatbot(elem_id='chatbot') #c
|
133 |
inputs = gr.Textbox(placeholder= "Hi there!", label= "Type an input and press Enter") #t
|
|
|
126 |
# 6. Use Gradio to pull it all together
|
127 |
with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|
128 |
#chatbot {height: 520px; overflow: auto;}""") as demo:
|
129 |
+
|
130 |
+
|
131 |
gr.HTML(title)
|
132 |
+
|
133 |
+
|
134 |
with gr.Column(elem_id = "col_container"):
|
135 |
chatbot = gr.Chatbot(elem_id='chatbot') #c
|
136 |
inputs = gr.Textbox(placeholder= "Hi there!", label= "Type an input and press Enter") #t
|