WillWEI0103 commited on
Commit
e52763a
·
verified ·
1 Parent(s): e36d321

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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