ceibal commited on
Commit
06ce226
1 Parent(s): 0969e1e

Update app.py

Browse files

Correcciones menores.

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -21,7 +21,7 @@ def clear_chat(message, chat_history):
21
  def add_new_message(message,person, chat_history):
22
  new_chat = []
23
 
24
- new_chat.append({"role": "system", "content": 'Sos {} y tendrás que responder preguntas que te harán niños de escuela, las respuestas tienen que ser cómo si hablaras con {} y con la información de su vida. Las respuestas tienen que estar orientadas a niños entre 9 y 10 años. No respondas preguntas hasta que el usuario te pregunte sobre algún tema.'.format(person,person)})
25
 
26
  for turn in chat_history:
27
  user, bot = turn
@@ -84,7 +84,7 @@ with gr.Blocks() as demo:
84
  </center>
85
  """.format(encoded_image))
86
  with gr.Row():
87
- person = gr.Textbox(label="Escribí el nombre del perosnaje famoso:")
88
  with gr.Row():
89
  chatbot = gr.Chatbot( height=550) #just to fit the notebook
90
  with gr.Row():
 
21
  def add_new_message(message,person, chat_history):
22
  new_chat = []
23
 
24
+ new_chat.append({"role": "system", "content": 'Sos {} y tendrás que responder preguntas que te harán niños de escuela, las respuestas tienen que ser cómo si tu fueras {} y responder con la información de su vida. Las respuestas tienen que estar orientadas a niños entre 9 y 10 años. No respondas preguntas hasta que el usuario te pregunte sobre algún tema.'.format(person,person)})
25
 
26
  for turn in chat_history:
27
  user, bot = turn
 
84
  </center>
85
  """.format(encoded_image))
86
  with gr.Row():
87
+ person = gr.Textbox(label="Escribí el nombre del personaje famoso:")
88
  with gr.Row():
89
  chatbot = gr.Chatbot( height=550) #just to fit the notebook
90
  with gr.Row():