saitejatirunagari Claude Opus 4.6 commited on
Commit
bce071b
·
1 Parent(s): 6f43d2b

feat(ui): default min score for LLM resume to 1 (generate for all jobs)

Browse files
Files changed (1) hide show
  1. ui.py +2 -2
ui.py CHANGED
@@ -569,8 +569,8 @@ with st.expander("⚙️ Configure Run", expanded=not (st.session_state.running
569
 
570
  with col_score:
571
  st.markdown('<p class="section-label">🤖 Min Score for LLM Resume</p>', unsafe_allow_html=True)
572
- min_score = st.slider("Min score", 1, 10, 6, label_visibility="collapsed",
573
- help="Jobs scoring ≥ this get a fully AI-tailored resume. Rest get template.")
574
 
575
  with col_gs:
576
  st.markdown('<p class="section-label">📊 Google Sheet</p>', unsafe_allow_html=True)
 
569
 
570
  with col_score:
571
  st.markdown('<p class="section-label">🤖 Min Score for LLM Resume</p>', unsafe_allow_html=True)
572
+ min_score = st.slider("Min score", 1, 10, 1, label_visibility="collapsed",
573
+ help="Jobs scoring ≥ this get a fully AI-tailored resume. Set to 1 to generate LLM resumes for ALL jobs.")
574
 
575
  with col_gs:
576
  st.markdown('<p class="section-label">📊 Google Sheet</p>', unsafe_allow_html=True)