Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ def sentiment(summary):
|
|
16 |
def main():
|
17 |
st.set_page_config(page_title="Your Finance news", page_icon="📰")
|
18 |
st.header("Summarize Your Finance News and Analyze Sentiment")
|
19 |
-
text=st.text_input('Input your Finance news: ')
|
20 |
st.text('Your Finance news: ')
|
21 |
st.write(text)
|
22 |
|
|
|
16 |
def main():
|
17 |
st.set_page_config(page_title="Your Finance news", page_icon="📰")
|
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 |
|