Harikrishna Dev commited on
Commit
57c9225
·
1 Parent(s): 67988ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -7
app.py CHANGED
@@ -50,7 +50,7 @@ else:
50
  openai_api_key = st.secrets["OPENAI_API_KEY"]
51
 
52
  # Streamlit app title and disclaimer
53
- st.title("Harikrishna's resume bot")
54
  st.image("https://harikrishnad1997.github.io/images/about.jpg")
55
  with st.expander("⚠️Disclaimer"):
56
  st.write("""This bot is a LLM trained on GPT-3.5-turbo model to answer questions about Hari's professional background and qualifications. Your responses are recorded in a database for quality assurance and improvement purposes. Please be respectful and avoid asking personal or inappropriate questions.""")
@@ -146,17 +146,16 @@ if "messages" not in st.session_state:
146
  with st.chat_message("assistant"):
147
  message_placeholder = st.empty()
148
  welcome_message = """
149
- Welcome! I'm **Resume Bot**, a virtual assistant designed to provide comprehensive insights into Harikrishna (Harry) Dev's impressive background and qualifications. I have in-depth knowledge of his academic achievements, professional experiences, technical skills, and career aspirations.
150
-
151
- Feel free to inquire about any aspect of Hari's profile, such as his educational journey, internships, professional projects, areas of expertise in data science and AI, or his future goals. I can elaborate on topics like:
152
 
153
  - His Master's in Business Analytics with a focus on Data Science from UTD
154
- - His hands-on experience developing AI solutions like Generative models and applying techniques like regularized linear modeling
155
- - His proven track record in roles at companies like Daifuku, Flipkart, and Walmart
156
  - His proficiency in programming languages, ML frameworks, data visualization, and cloud platforms
157
  - His passion for leveraging transformative technologies to drive innovation and positive societal impact
158
 
159
- I'm here to provide you with a comprehensive understanding of Hari's unique qualifications and capabilities. What would you like to know first? I'm ready to answer your questions in detail.
160
  """
161
  message_placeholder.markdown(welcome_message)
162
 
 
50
  openai_api_key = st.secrets["OPENAI_API_KEY"]
51
 
52
  # Streamlit app title and disclaimer
53
+ st.title("HariGPT - Hari's resume bot")
54
  st.image("https://harikrishnad1997.github.io/images/about.jpg")
55
  with st.expander("⚠️Disclaimer"):
56
  st.write("""This bot is a LLM trained on GPT-3.5-turbo model to answer questions about Hari's professional background and qualifications. Your responses are recorded in a database for quality assurance and improvement purposes. Please be respectful and avoid asking personal or inappropriate questions.""")
 
146
  with st.chat_message("assistant"):
147
  message_placeholder = st.empty()
148
  welcome_message = """
149
+ Welcome! I'm **Resume Bot**, a virtual assistant designed to provide insights into Harikrishna (Harry) Dev's background and qualifications.
150
+
151
+ Feel free to inquire about any aspect of Hari's profile, such as his educational journey, internships, professional projects, areas of expertise in data science and AI, or his future goals.
152
 
153
  - His Master's in Business Analytics with a focus on Data Science from UTD
154
+ - His track record in roles at companies like Daifuku, Flipkart, and Walmart
 
155
  - His proficiency in programming languages, ML frameworks, data visualization, and cloud platforms
156
  - His passion for leveraging transformative technologies to drive innovation and positive societal impact
157
 
158
+ What would you like to know first? I'm ready to answer your questions in detail.
159
  """
160
  message_placeholder.markdown(welcome_message)
161