paloma99 commited on
Commit
cf5cb09
·
verified ·
1 Parent(s): 33e5504

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -72,6 +72,17 @@ def echo(message, history):
72
 
73
  custom_desc_chat = "<span style='font-size: 16px; color: rgb(243, 239, 224);'>Green Greta ChatBot está aquí para responder todas tus preguntas y ayudarte a tomar decisiones más informadas sobre tu reciclaje.</span>"
74
 
 
 
 
 
 
 
 
 
 
 
 
75
 
76
  chatbot_gradio_app = gr.ChatInterface(
77
  fn=echo,
@@ -79,7 +90,7 @@ chatbot_gradio_app = gr.ChatInterface(
79
  textbox=gr.Textbox(placeholder="Hazme una pregunta sobre reciclaje...", scale=7),
80
  title=custom_title,
81
  description=custom_desc_chat,
82
- examples=[<span style='color: #4e6339;'>Hola, ¿cuál es tu nombre?</span>, <span style='color: #4e6339;'>¿Qué puedo hacer con ropa que ya no uso?</span>, <span style='color: #4e6339;'>¿Qué recursos educativos existen para aprender mas sobre sostenibilidad?</span>],
83
  theme=theme,
84
  fill_height=True,
85
  submit_btn="Enviar",
 
72
 
73
  custom_desc_chat = "<span style='font-size: 16px; color: rgb(243, 239, 224);'>Green Greta ChatBot está aquí para responder todas tus preguntas y ayudarte a tomar decisiones más informadas sobre tu reciclaje.</span>"
74
 
75
+ custom_examples = ["Hola, ¿cuál es tu nombre?", "¿Qué puedo hacer con ropa que ya no uso?", "¿Qué recursos educativos existen para aprender mas sobre sostenibilidad?"]
76
+
77
+ custom_examples_css = [
78
+ "color: #4e6339;",
79
+ "color: #4e6339;",
80
+ "color: #4e6339;"
81
+ ]
82
+
83
+ example_containers = [
84
+ gr.Container(custom_examples[i], css=custom_examples_css[i]) for i in range(len(custom_examples))
85
+ ]
86
 
87
  chatbot_gradio_app = gr.ChatInterface(
88
  fn=echo,
 
90
  textbox=gr.Textbox(placeholder="Hazme una pregunta sobre reciclaje...", scale=7),
91
  title=custom_title,
92
  description=custom_desc_chat,
93
+ examples=example_containers,
94
  theme=theme,
95
  fill_height=True,
96
  submit_btn="Enviar",