Spaces:
Sleeping
Sleeping
Commit ·
2b79d0e
1
Parent(s): 26e2707
Update app.py (#3)
Browse files- Update app.py (9810653fb72ddcb937cb3f10ee239c1647afbd91)
Co-authored-by: David <NakanoMiku1@users.noreply.huggingface.co>
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'):
|