Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
•
cca05ba
1
Parent(s):
b3bb32b
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,6 @@ def loading():
|
|
19 |
|
20 |
with gr.Blocks() as app:
|
21 |
with gr.Column(elem_id="column_container"):
|
22 |
-
gr.HTML(title_html)
|
23 |
chatbot = gr.Chatbot([], elem_id="chatbot")
|
24 |
with gr.Column():
|
25 |
send = gr.Label(value="Escreva sua QUESTÃO abaixo e pressione ENTER")
|
@@ -28,7 +27,6 @@ with gr.Blocks() as app:
|
|
28 |
placeholder="Sobre o que você quer saber?",
|
29 |
)
|
30 |
clear = gr.ClearButton([query, chatbot])
|
31 |
-
gr.HTML(bts_html)
|
32 |
query.submit(response, [query, chatbot], [query, chatbot], queue=True)
|
33 |
|
34 |
app.launch()
|
|
|
19 |
|
20 |
with gr.Blocks() as app:
|
21 |
with gr.Column(elem_id="column_container"):
|
|
|
22 |
chatbot = gr.Chatbot([], elem_id="chatbot")
|
23 |
with gr.Column():
|
24 |
send = gr.Label(value="Escreva sua QUESTÃO abaixo e pressione ENTER")
|
|
|
27 |
placeholder="Sobre o que você quer saber?",
|
28 |
)
|
29 |
clear = gr.ClearButton([query, chatbot])
|
|
|
30 |
query.submit(response, [query, chatbot], [query, chatbot], queue=True)
|
31 |
|
32 |
app.launch()
|