Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -362,7 +362,7 @@ def main():
|
|
362 |
|
363 |
# Display results
|
364 |
st.subheader("Job Fit Assessment")
|
365 |
-
fit_labels = {0: "
|
366 |
colors = {0: "red", 1: "orange", 2: "green"}
|
367 |
st.markdown(f"<h2 style='color: {colors[fit_score]};'>{fit_labels[fit_score]}</h2>", unsafe_allow_html=True)
|
368 |
st.markdown(assessment)
|
|
|
362 |
|
363 |
# Display results
|
364 |
st.subheader("Job Fit Assessment")
|
365 |
+
fit_labels = {0: "NO FIT", 1: "POTENTIAL FIT", 2: "GOOD FIT"}
|
366 |
colors = {0: "red", 1: "orange", 2: "green"}
|
367 |
st.markdown(f"<h2 style='color: {colors[fit_score]};'>{fit_labels[fit_score]}</h2>", unsafe_allow_html=True)
|
368 |
st.markdown(assessment)
|