Spaces:
Runtime error
Runtime error
Commit
·
20e4075
1
Parent(s):
e3a221c
Update app.py
Browse files
app.py
CHANGED
@@ -55,13 +55,7 @@ with col1:
|
|
55 |
import re
|
56 |
|
57 |
res = len(re.findall(r"\w+", data))
|
58 |
-
|
59 |
-
st.warning(
|
60 |
-
"⚠️ Your text contains "
|
61 |
-
+ str(res)
|
62 |
-
+ " words."
|
63 |
-
+ " Only the first 500 words will be reviewed. Stay tuned as increased allowance is coming! 😊")
|
64 |
-
data = data[:MAX_WORDS]
|
65 |
Summarizebtn = st.button("Summarize")
|
66 |
if (Summarizebtn):
|
67 |
output = summarize(data, modelname)
|
|
|
55 |
import re
|
56 |
|
57 |
res = len(re.findall(r"\w+", data))
|
58 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
Summarizebtn = st.button("Summarize")
|
60 |
if (Summarizebtn):
|
61 |
output = summarize(data, modelname)
|