amitagh commited on
Commit
fdbd2a6
·
verified ·
1 Parent(s): 9d37d72

update text

Browse files
Files changed (1) hide show
  1. cv_match/cv_match.py +8 -8
cv_match/cv_match.py CHANGED
@@ -25,20 +25,20 @@ def proc_pdf_cvs(pdf_cv_list, job_opp_list):
25
  return final_res
26
 
27
  with gr.Blocks() as cvm_app:
28
- gr.Markdown("# CV-JD match maker")
29
- gr.Markdown("Upload the Job description using csv template given. Download the template and fill it and upload it.")
30
- gr.Markdown("Upload the Multiple PDF CV files. Ensure all your CVs are in same folder so you can choose multiple PDF files while selecting.")
31
- gr.Markdown("Press Generate Match to generate a match result that lists for each candidate a match score and resons for each Job opening. ")
32
  gr.Markdown("## Upload Job Description")
33
 
34
- job_opp_list = gr.File(file_count="single", file_types=[".csv"])
35
  dsjdf = gr.DownloadButton("Download sample Job description csv file template", visible=True,value= "jobs.csv")
36
 
37
  gr.Markdown("## Upload PDF CV files")
38
  #pdf_cv_list = gr.UploadButton("Upload a file", file_count="multiple", file_types=[".pdf"])
39
- pdf_cv_list = gr.File(file_count="multiple", file_types=[".pdf"])
40
- match_btn = gr.Button("Generate Match Result")
41
- match_res = gr.Textbox(label="Match Result:", interactive=False)
42
 
43
  match_btn.click(
44
  proc_pdf_cvs,
 
25
  return final_res
26
 
27
  with gr.Blocks() as cvm_app:
28
+ gr.Markdown("# CV-JD Match Maker")
29
+ gr.Markdown("Upload the Job Description using CSV template given. Download the template and fill it and upload it.")
30
+ gr.Markdown("Upload the Multiple PDF CV files. Ensure all your PDF CVs are in same folder on your laptop so you can choose multiple PDF files while selecting.")
31
+ gr.Markdown("Press Generate Match to generate a match result that lists for each candidate a match score and score reasons for each Job opening. ")
32
  gr.Markdown("## Upload Job Description")
33
 
34
+ job_opp_list = gr.File(file_count="single", file_types=[".csv"], label="JD CSV file")
35
  dsjdf = gr.DownloadButton("Download sample Job description csv file template", visible=True,value= "jobs.csv")
36
 
37
  gr.Markdown("## Upload PDF CV files")
38
  #pdf_cv_list = gr.UploadButton("Upload a file", file_count="multiple", file_types=[".pdf"])
39
+ pdf_cv_list = gr.File(file_count="multiple", file_types=[".pdf"], label="PDF CV files")
40
+ match_btn = gr.Button("Generate Match Results")
41
+ match_res = gr.Textbox(label="Match Results:", interactive=False)
42
 
43
  match_btn.click(
44
  proc_pdf_cvs,