nurindahpratiwi commited on
Commit
d90a1ae
·
1 Parent(s): bdc3bde
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -72,7 +72,7 @@ def main():
72
  st.title("PDF Summarization App using Language Model")
73
 
74
  uploaded_file = st.file_uploader("Upload your PDF file", type=['pdf'])
75
- maxlength = st.number_input("Max token", min_value=1, max_value=10, value=5, step=1)
76
 
77
  if uploaded_file is not None:
78
  if st.button("Summarize"):
 
72
  st.title("PDF Summarization App using Language Model")
73
 
74
  uploaded_file = st.file_uploader("Upload your PDF file", type=['pdf'])
75
+ maxlength = st.number_input("Max token", min_value=1, max_value=1000, value=128, step=1)
76
 
77
  if uploaded_file is not None:
78
  if st.button("Summarize"):