Spaces:
Configuration error
Configuration error
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -21,7 +21,7 @@ st.title("Text Summarizer")
|
|
| 21 |
st.write("Generate concise summariy.")
|
| 22 |
|
| 23 |
# ---- Input Area ----
|
| 24 |
-
article = st.text_area("Enter the article
|
| 25 |
|
| 26 |
# ---- Parameters ----
|
| 27 |
max_input_len = 512
|
|
|
|
| 21 |
st.write("Generate concise summariy.")
|
| 22 |
|
| 23 |
# ---- Input Area ----
|
| 24 |
+
article = st.text_area("Enter the article to summarize:", height=250)
|
| 25 |
|
| 26 |
# ---- Parameters ----
|
| 27 |
max_input_len = 512
|