Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -15,10 +15,11 @@ if "model" not in globals():
|
|
15 |
|
16 |
# Funci贸n exclusiva para humanizaci贸n de texto
|
17 |
def humanize_text(input_text):
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
|
|
22 |
|
23 |
prompt = f"{system_prompt}\n\nTexto original: {input_text}\n\nTexto humanizado:"
|
24 |
|
|
|
15 |
|
16 |
# Funci贸n exclusiva para humanizaci贸n de texto
|
17 |
def humanize_text(input_text):
|
18 |
+
system_prompt = (
|
19 |
+
"Reescribe el siguiente texto de manera m谩s natural y humana, "
|
20 |
+
"manteniendo toda la informaci贸n importante pero con un tono m谩s cercano y fluido."
|
21 |
+
)
|
22 |
+
|
23 |
|
24 |
prompt = f"{system_prompt}\n\nTexto original: {input_text}\n\nTexto humanizado:"
|
25 |
|