|
import streamlit as st |
|
|
|
import streamlit as st |
|
|
|
def start_greeting(): |
|
|
|
st.write("---") |
|
st.write("### Welcome to the TalentScout Hiring Assistant Chatbot! π") |
|
|
|
|
|
st.write("Hello and thank you for applying! I'm here to help you through the interview process.") |
|
st.write("We'll be reviewing your skills and experience through a series of technical questions. Let's get started!") |
|
|
|
|
|
st.write("You'll have the opportunity to upload your resume or enter your details manually. Then, I'll generate some technical questions based on your expertise.") |
|
|
|
|
|
st.write("Please select your preferred method to proceed, and we'll take it from there!") |
|
|
|
|
|
|
|
|
|
|
|
def end_conversation(): |
|
|
|
st.write("---") |
|
end_greetings = """ |
|
### Thank You for Your Responses! |
|
Thank you for your time and thoughtful answers. We appreciate your interest in the position!\n |
|
Our team will review your responses and contact you soon regarding the next steps in the hiring process.\n |
|
If you have any questions or need further assistance, feel free to reach out!\n |
|
Good luck and stay positive! π |
|
""" |
|
return end_greetings |
|
|
|
def home_greetings(): |
|
st.write("Home page") |
|
|