Spaces:
Runtime error
Runtime error
Commit
·
462101e
1
Parent(s):
078e622
working on text splitting
Browse files
app.py
CHANGED
@@ -125,7 +125,8 @@ def main() -> None:
|
|
125 |
with st.spinner("Summarizing in progress..."):
|
126 |
sentences = split_sentences_by_token_length(target_text_input, 600)
|
127 |
for sentence in sentences:
|
128 |
-
st.
|
|
|
129 |
#output = pipe(sentence)
|
130 |
#st.markdown(output["summary_text"])
|
131 |
|
|
|
125 |
with st.spinner("Summarizing in progress..."):
|
126 |
sentences = split_sentences_by_token_length(target_text_input, 600)
|
127 |
for sentence in sentences:
|
128 |
+
st.markdown(sentence)
|
129 |
+
st.markdown("####")
|
130 |
#output = pipe(sentence)
|
131 |
#st.markdown(output["summary_text"])
|
132 |
|