AIClubleader commited on
Commit
399f088
·
1 Parent(s): 40d9065

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -2,7 +2,7 @@
2
  import streamlit as st
3
  from utils import *
4
 
5
- st.header("Summarizer")
6
 
7
  txt = st.text_area('Copy and paste your text here',
8
  max_chars = 4000,
@@ -17,8 +17,8 @@ st.subheader("Word count")
17
  word_count = st.slider("How long would you like your summary?", 10, 200)
18
  st.write("Word count:", word_count)
19
 
20
- txt = st.text_area('Copy and paste your password here',
21
- max_chars = 500)
22
 
23
  st.header(divider='rainbow')
24
 
 
2
  import streamlit as st
3
  from utils import *
4
 
5
+ st.header("AI Output: Summarizer")
6
 
7
  txt = st.text_area('Copy and paste your text here',
8
  max_chars = 4000,
 
17
  word_count = st.slider("How long would you like your summary?", 10, 200)
18
  st.write("Word count:", word_count)
19
 
20
+ password = st.text_input('Enter your password', max_chars=50, type="password") # changed st.text_input with type="password"
21
+ st.write(password)
22
 
23
  st.header(divider='rainbow')
24