paloma99 commited on
Commit
4e8ee65
·
verified ·
1 Parent(s): f9f0b40

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -69,11 +69,12 @@ def echo(message, history):
69
 
70
  chatbot_gradio_app = gr.ChatInterface(
71
  fn=echo,
72
- chatbot=gr.Chatbot(height=300),
73
  textbox=gr.Textbox(placeholder="Hazme una pregunta sobre reciclaje...", scale=7),
74
  title=custom_title,
75
  description="Green Greta ChatBot está aquí para responder todas tus preguntas y ayudarte a tomar decisiones más informadas sobre tu reciclaje.",
 
76
  theme=theme,
 
77
 
78
  )
79
 
 
69
 
70
  chatbot_gradio_app = gr.ChatInterface(
71
  fn=echo,
 
72
  textbox=gr.Textbox(placeholder="Hazme una pregunta sobre reciclaje...", scale=7),
73
  title=custom_title,
74
  description="Green Greta ChatBot está aquí para responder todas tus preguntas y ayudarte a tomar decisiones más informadas sobre tu reciclaje.",
75
+ examples=["Hola, ¿cuál es tu nombre?", "Greta, ¿cómo puedo reciclar cajas?", "¿Qué puedo hacer con ropa que ya no uso?"],
76
  theme=theme,
77
+ fill_height=True
78
 
79
  )
80