paloma99 commited on
Commit
f70e55b
1 Parent(s): 4e8ee65

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -2
app.py CHANGED
@@ -60,7 +60,10 @@ image_gradio_app = gr.Interface(
60
  outputs=[gr.Label(label="Clasificación")],
61
  title=custom_title,
62
  description="Carga una foto del objeto que quieras reciclar y Green Greta identificará de qué se trata para que puedas desecharlo adecuadamente.",
63
- theme=theme
 
 
 
64
  )
65
 
66
  def echo(message, history):
@@ -69,12 +72,17 @@ def echo(message, history):
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
 
 
60
  outputs=[gr.Label(label="Clasificación")],
61
  title=custom_title,
62
  description="Carga una foto del objeto que quieras reciclar y Green Greta identificará de qué se trata para que puedas desecharlo adecuadamente.",
63
+ theme=theme,
64
+ submit_btn="Cargar",
65
+ clear_btn="Borrar",
66
+
67
  )
68
 
69
  def echo(message, history):
 
72
 
73
  chatbot_gradio_app = gr.ChatInterface(
74
  fn=echo,
75
+ chatbot=gr.Chatbot(height=400),
76
  textbox=gr.Textbox(placeholder="Hazme una pregunta sobre reciclaje...", scale=7),
77
  title=custom_title,
78
  description="Green Greta ChatBot está aquí para responder todas tus preguntas y ayudarte a tomar decisiones más informadas sobre tu reciclaje.",
79
  examples=["Hola, ¿cuál es tu nombre?", "Greta, ¿cómo puedo reciclar cajas?", "¿Qué puedo hacer con ropa que ya no uso?"],
80
  theme=theme,
81
+ fill_height=True,
82
+ submit_btn="Enviar",
83
+ retry_btn="Reenviar",
84
+ undo_btn="Deshacer",
85
+ clear_btn="Borrar",
86
 
87
  )
88