Spaces:
Running
Running
Add Success field instead of just text
Browse files
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.
|
|
|
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()
|