Mapu25 commited on
Commit
776300e
verified
1 Parent(s): 4a41010

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -206,23 +206,23 @@ def responder(mensaje, historial):
206
  )
207
 
208
  # 馃摉 RENOVACI脫N
209
- if any(p in mensaje for p in ["renuevo", "renovaci贸n","renovacion","renovar libro","como renuevo", "c贸mo renuevo"]):
210
- respuestas.append(
211
- """馃摉 Renovaci贸n de libros:
 
212
 
213
- 馃憠 a href="https://primo.utb.edu.co/discovery/account?vid=57UTB_INST:57UTB_INST&section=loans&lang=es" target="_blank">Link de ingreso</a>
214
  """
215
  )
216
 
217
  # 馃摎 RESERVA
218
  if "reserv" in mensaje:
219
- respuestas.append(
220
- """馃摎 Realiza tu reserva por el cat谩logo PRIMO 馃憞
221
 
222
- 馃憠 <a href="https://primo.utb.edu.co/discovery/search?sortby=rank&vid=57UTB_INST:57UTB_INST" target="_blank">Ir al cat谩logo</a>
223
 
224
  馃帴 Video gu铆a:
225
- 馃憠 <a href="https://www.youtube.com/watch?v=ahmo6iLG2Es&t=141s" target="_blank">Ver video</a>
 
226
  """
227
  )
228
 
 
206
  )
207
 
208
  # 馃摉 RENOVACI脫N
209
+ if "renov" in mensaje:
210
+ respuesta += """馃摉 Renovaci贸n de libros:
211
+
212
+ 馃憠 [Renovar en PRIMO](https://primo.utb.edu.co/discovery/account?vid=57UTB_INST:57UTB_INST&section=loans&lang=es)
213
 
 
214
  """
215
  )
216
 
217
  # 馃摎 RESERVA
218
  if "reserv" in mensaje:
219
+ respuesta += """馃摎 Reserva de libros:
 
220
 
221
+ 馃憠 [Ir al cat谩logo](https://primo.utb.edu.co/discovery/search?vid=57UTB_INST:57UTB_INST)
222
 
223
  馃帴 Video gu铆a:
224
+ 馃憠 [Ver video](https://www.youtube.com/watch?v=ahmo6iLG2Es&t=141s)
225
+
226
  """
227
  )
228