pktpaulie commited on
Commit
94ae4bb
·
verified ·
1 Parent(s): 50770f3
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -107,7 +107,7 @@ def get_score(resume_path, job_description_path):
107
 
108
  def display_score(similarity, colors):
109
  # Display Score as a Pie Chart
110
- st.markdown(f"### Similarity Score: {int(similarity_score)}%")
111
 
112
  # Pie chart to show similarity
113
  fig, ax = plt.subplots()
@@ -148,7 +148,7 @@ if uploaded_resume and uploaded_job_description:
148
  if st.button("Tailor Resume"):
149
  with st.spinner("Generating resume..."):
150
  generated_resume, new_resume_path = generate_gemini(resume_path, job_description_path)
151
- st.markdown("Generated Tailored Resume:")
152
  # st.write(generated_resume)
153
 
154
  #Autoscroll
 
107
 
108
  def display_score(similarity, colors):
109
  # Display Score as a Pie Chart
110
+ st.markdown(f"### Resume - Job Match: {int(similarity_score)}%")
111
 
112
  # Pie chart to show similarity
113
  fig, ax = plt.subplots()
 
148
  if st.button("Tailor Resume"):
149
  with st.spinner("Generating resume..."):
150
  generated_resume, new_resume_path = generate_gemini(resume_path, job_description_path)
151
+ # st.markdown("Generated Tailored Resume:")
152
  # st.write(generated_resume)
153
 
154
  #Autoscroll