kabita-choudhary commited on
Commit
20e4075
·
1 Parent(s): e3a221c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -7
app.py CHANGED
@@ -55,13 +55,7 @@ with col1:
55
  import re
56
 
57
  res = len(re.findall(r"\w+", data))
58
- if res > MAX_WORDS:
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)