Spaces:
Paused
Paused
Commit
路
caed5e8
1
Parent(s):
e1835d3
Upload app.py
Browse files
app.py
CHANGED
@@ -113,10 +113,12 @@ def respuesta_chatbot(message, chat_history):
|
|
113 |
|
114 |
|
115 |
with gr.Blocks() as demo:
|
|
|
|
|
116 |
chatbot = gr.Chatbot()
|
117 |
msg = gr.Textbox()
|
118 |
clear = gr.ClearButton([msg, chatbot])
|
119 |
|
120 |
msg.submit(respuesta_chatbot, [msg, chatbot], [msg, chatbot])
|
121 |
|
122 |
-
demo.launch(
|
|
|
113 |
|
114 |
|
115 |
with gr.Blocks() as demo:
|
116 |
+
title_and_desc = gr.Markdown(
|
117 |
+
"# Cegaper GPT \n Cegaper GPT es un servicio automatizado para recomendar la mejor opci贸n de transporte de la compa帽铆a Cegaper y ayudarte a comprar tus tickets.")
|
118 |
chatbot = gr.Chatbot()
|
119 |
msg = gr.Textbox()
|
120 |
clear = gr.ClearButton([msg, chatbot])
|
121 |
|
122 |
msg.submit(respuesta_chatbot, [msg, chatbot], [msg, chatbot])
|
123 |
|
124 |
+
demo.launch()
|