andreinigo commited on
Commit
5b38e95
1 Parent(s): fceaadb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -89,8 +89,7 @@ with gr.Blocks() as demo:
89
  title_and_desc = gr.Markdown(
90
  "# NateevoGPT \n Nateevo GPT es un servicio automatizado para responder una pregunta de tus datos de marketing usando la informaci贸n de Salesforce Marketing Cloud Intelligence.")
91
  chatbot = gr.Chatbot()
92
- msg = gr.Textbox()
93
- clear = gr.ClearButton([msg, chatbot])
94
 
95
  msg.submit(respuesta_chatbot, [msg, chatbot], [msg, chatbot])
96
 
 
89
  title_and_desc = gr.Markdown(
90
  "# NateevoGPT \n Nateevo GPT es un servicio automatizado para responder una pregunta de tus datos de marketing usando la informaci贸n de Salesforce Marketing Cloud Intelligence.")
91
  chatbot = gr.Chatbot()
92
+ msg = gr.Textbox(label= 'Pregunta', placeholder="Escribe tu pregunta aqu铆")
 
93
 
94
  msg.submit(respuesta_chatbot, [msg, chatbot], [msg, chatbot])
95