Linh Vuu commited on
Commit
3438b94
1 Parent(s): 5fa65e1

add run-out-energy message

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -190,7 +190,11 @@ def main():
190
 
191
  # Streamlit interface
192
  st.title("News Summariser")
193
- st.write("I am running out of energy. Please contact my assistant [link] (https://www.linkedin.com/in/linhvuu/) to wake me up.")
 
 
 
 
194
  with st.form(key="user_input_form"):
195
  instructions = st.text_input("Enter topic:")
196
  submit_button = st.form_submit_button(label="Find and summarise news related to the topic above")
 
190
 
191
  # Streamlit interface
192
  st.title("News Summariser")
193
+
194
+ # Note out of API key's budget
195
+ link = "I am running out of energy. Please contact my assistant [link] (https://www.linkedin.com/in/linhvuu/) to wake me up."
196
+ st.markdown(link,unsafe_allow_html=True)
197
+
198
  with st.form(key="user_input_form"):
199
  instructions = st.text_input("Enter topic:")
200
  submit_button = st.form_submit_button(label="Find and summarise news related to the topic above")