nlpblogs commited on
Commit
988ad8b
·
verified ·
1 Parent(s): f843634

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -23,7 +23,7 @@ with st.sidebar:
23
 
24
  **Usage Limits**
25
  For each applicant you can upload their resume and request results once (1 request per applicant's resume).
26
- At the bottom of the app, you can also upload (up to 50 times) each applicant's resume to visualize their profile as a treemap chart as well as the results in a matrix heatmap. If you hover over the interactive graphs, an icon will appear to download them.
27
 
28
  **Subscription Management**
29
  This demo app offers a one-day subscription, expiring after 24 hours. If you are interested in building your own AI Resume Analysis based on Keywords Web App, we invite you to explore our NLP Web App Store on our website. You can select your desired features, place your order, and we will deliver your custom app within five business days. If you wish to delete your Account with us, please contact us at [email protected]
@@ -108,7 +108,7 @@ st.subheader("Visualise", divider="blue")
108
 
109
  if 'upload_count' not in st.session_state:
110
  st.session_state['upload_count'] = 0
111
- max_attempts = 50
112
 
113
  if st.session_state['upload_count'] < max_attempts:
114
  uploaded_files = st.file_uploader("Upload Applicant's resume", type="pdf", key="applicant 1")
 
23
 
24
  **Usage Limits**
25
  For each applicant you can upload their resume and request results once (1 request per applicant's resume).
26
+ At the bottom of the app, you can also upload an applicant's resume once (1 request) to visualize their profile as a treemap chart as well as the results in a matrix heatmap. If you hover over the interactive graphs, an icon will appear to download them.
27
 
28
  **Subscription Management**
29
  This demo app offers a one-day subscription, expiring after 24 hours. If you are interested in building your own AI Resume Analysis based on Keywords Web App, we invite you to explore our NLP Web App Store on our website. You can select your desired features, place your order, and we will deliver your custom app within five business days. If you wish to delete your Account with us, please contact us at [email protected]
 
108
 
109
  if 'upload_count' not in st.session_state:
110
  st.session_state['upload_count'] = 0
111
+ max_attempts = 1
112
 
113
  if st.session_state['upload_count'] < max_attempts:
114
  uploaded_files = st.file_uploader("Upload Applicant's resume", type="pdf", key="applicant 1")