Spaces:
Sleeping
Sleeping
Update app.py
#3
by
NakanoMiku1
- opened
app.py
CHANGED
|
@@ -17,8 +17,12 @@ 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 |
st.button("Submit")
|
| 21 |
|
|
|
|
| 22 |
|
| 23 |
|
| 24 |
# if st.button('submit'):
|
|
|
|
| 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 = 1000)
|
| 22 |
+
|
| 23 |
st.button("Submit")
|
| 24 |
|
| 25 |
+
st.button("ChatGPT")
|
| 26 |
|
| 27 |
|
| 28 |
# if st.button('submit'):
|