Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ def main():
|
|
18 |
st.header("Summarize Your Finance News and Analyze Sentiment")
|
19 |
text=st.text_input('Input your Finance news: (Max lenth<=3000)',max_chars=3000)
|
20 |
st.text('Your Finance news: ')
|
21 |
-
st.write(text)
|
22 |
|
23 |
#Stage 1: Text Summarization
|
24 |
summary = text_summarize(text)
|
|
|
18 |
st.header("Summarize Your Finance News and Analyze Sentiment")
|
19 |
text=st.text_input('Input your Finance news: (Max lenth<=3000)',max_chars=3000)
|
20 |
st.text('Your Finance news: ')
|
21 |
+
st.write(str(text))
|
22 |
|
23 |
#Stage 1: Text Summarization
|
24 |
summary = text_summarize(text)
|