WillWEI0103 commited on
Commit
362669d
·
verified ·
1 Parent(s): 6e7d6b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -16,7 +16,8 @@ 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: (Max lenth<=3000)',max_chars=3000)
 
20
  st.text('Your Finance news: ')
21
  st.write(str(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
+ st.text('Input your Finance news(Max lenth<=3000): ')
20
+ text=st.text_input(max_chars=3000)
21
  st.text('Your Finance news: ')
22
  st.write(str(text))
23