Spaces:
Running
on
Zero
Running
on
Zero
Fix url
Browse files- app.py +2 -2
- download_url.py +3 -3
app.py
CHANGED
@@ -65,7 +65,7 @@ def generate_text(
|
|
65 |
yield title, temp, text
|
66 |
else:
|
67 |
try:
|
68 |
-
title, text = download_text_and_title(url)
|
69 |
except Exception as e:
|
70 |
title = None
|
71 |
text = None
|
@@ -181,7 +181,7 @@ Para obtener solo la respuesta al clickbait, selecciona 100""",
|
|
181 |
|
182 |
🗒 La IA no es capaz de acceder a todas las webs, por ejemplo, si introduces un enlace a una noticia que requiere suscripción, la IA no podrá acceder a ella. Algunas webs pueden tener tecnologías para bloquear bots.
|
183 |
|
184 |
-
⌚ La IA se encuentra corriendo en un hardware bastante modesto, debería tardar menos de
|
185 |
|
186 |
💸 Este es un projecto sin ánimo de lucro, no se genera ningún tipo de ingreso con esta app. Los datos, la IA y el código se publicarán para su uso en la investigación académica. No puedes usar esta app para ningún uso comercial.
|
187 |
|
|
|
65 |
yield title, temp, text
|
66 |
else:
|
67 |
try:
|
68 |
+
title, text, url = download_text_and_title(url)
|
69 |
except Exception as e:
|
70 |
title = None
|
71 |
text = None
|
|
|
181 |
|
182 |
🗒 La IA no es capaz de acceder a todas las webs, por ejemplo, si introduces un enlace a una noticia que requiere suscripción, la IA no podrá acceder a ella. Algunas webs pueden tener tecnologías para bloquear bots.
|
183 |
|
184 |
+
⌚ La IA se encuentra corriendo en un hardware bastante modesto, debería tardar menos de 30 segundos en generar el resumen, pero si muchos usuarios usan la app a la vez, tendrás que esperar tu turno.
|
185 |
|
186 |
💸 Este es un projecto sin ánimo de lucro, no se genera ningún tipo de ingreso con esta app. Los datos, la IA y el código se publicarán para su uso en la investigación académica. No puedes usar esta app para ningún uso comercial.
|
187 |
|
download_url.py
CHANGED
@@ -48,15 +48,15 @@ def download_text_and_title(url):
|
|
48 |
title = title.replace("\n", " ").replace("\r", " ").replace("\t", " ")
|
49 |
title = " ".join(title.strip().split())
|
50 |
|
51 |
-
return title, text
|
52 |
else:
|
53 |
print("Failed to retrieve the web page. Status code:", response.status_code)
|
54 |
print("URL:", url)
|
55 |
-
return None, None
|
56 |
except Exception as e:
|
57 |
print("An error occurred:", str(e))
|
58 |
print("URL:", url)
|
59 |
-
return None, None
|
60 |
|
61 |
|
62 |
# Example usage
|
|
|
48 |
title = title.replace("\n", " ").replace("\r", " ").replace("\t", " ")
|
49 |
title = " ".join(title.strip().split())
|
50 |
|
51 |
+
return title, text, url
|
52 |
else:
|
53 |
print("Failed to retrieve the web page. Status code:", response.status_code)
|
54 |
print("URL:", url)
|
55 |
+
return None, None, None
|
56 |
except Exception as e:
|
57 |
print("An error occurred:", str(e))
|
58 |
print("URL:", url)
|
59 |
+
return None, None, None
|
60 |
|
61 |
|
62 |
# Example usage
|