mbosse99 commited on
Commit
8cda49f
·
1 Parent(s): 9e9de90

Add Success field instead of just text

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -25,7 +25,8 @@ def upload_blob(pdf_name, json_data, pdf_data):
25
 
26
  link = "https://tensora.ai/workgenius/cv-evaluation2/?job="+pdf_name
27
 
28
- st.write('Data and PDF have been successfully uploaded. The link to the chatbot for the potential candidates is the following: '+link)
 
29
 
30
  return True
31
  except Exception as e:
@@ -93,5 +94,6 @@ def main():
93
  col_empty, col_btn = st.columns([5, 1])
94
  if col_btn.button("Clear" ,key="clear_btn",use_container_width=True):
95
  streamlit_js_eval(js_expressions="parent.window.location.reload()")
 
96
  if __name__ == "__main__":
97
  main()
 
25
 
26
  link = "https://tensora.ai/workgenius/cv-evaluation2/?job="+pdf_name
27
 
28
+ st.success('Data and PDF have been successfully uploaded. The link to the chatbot for the potential candidates is the following: ')
29
+ st.write(link)
30
 
31
  return True
32
  except Exception as e:
 
94
  col_empty, col_btn = st.columns([5, 1])
95
  if col_btn.button("Clear" ,key="clear_btn",use_container_width=True):
96
  streamlit_js_eval(js_expressions="parent.window.location.reload()")
97
+
98
  if __name__ == "__main__":
99
  main()