julio07cesar10
commited on
Commit
•
f412462
1
Parent(s):
56e9063
Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ if st.button("Traducir"):
|
|
26 |
with st.spinner("Traduciendo..."):
|
27 |
time.sleep(2)
|
28 |
if user_input:
|
29 |
-
textotraducido = traductor(
|
30 |
st.succes("Texto Traducido: "{textotraducido})
|
31 |
else:
|
32 |
st.warning("Ingrese un Texto")
|
|
|
26 |
with st.spinner("Traduciendo..."):
|
27 |
time.sleep(2)
|
28 |
if user_input:
|
29 |
+
textotraducido = traductor(textoingresado, max_lenght=500)[0]["textotraducido"]
|
30 |
st.succes("Texto Traducido: "{textotraducido})
|
31 |
else:
|
32 |
st.warning("Ingrese un Texto")
|