Spaces:
Sleeping
Sleeping
Update
Browse files
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"###
|
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
|