NithyaAla commited on
Commit
93dc433
·
verified ·
1 Parent(s): 28d1692

enhanced UI

Browse files
Files changed (1) hide show
  1. app.py +5 -8
app.py CHANGED
@@ -59,14 +59,13 @@ interface = gr.Interface(
59
  gr.Radio(EDUCATION_OPTIONS, label="Education"),
60
  gr.Radio(STATUS_OPTIONS, label="Professional Status"),
61
  gr.Textbox(label="Desired Role", placeholder="Enter the role you are interested in"),
62
- gr.File(label="Upload CV (.pdf or .docx)", file_types=[".pdf", ".docx"], type="filepath")
63
  ],
64
  outputs=[
65
  gr.HTML(
66
  value="""
67
  <h2 style='font-weight:bold;'>Extracted Skills</h2>
68
  <p><i>Tap the triangle to see evidence for each skill.</i></p>
69
- <p>No skills extracted yet.</p>
70
  """,
71
  label="Extracted Skills + Evidence Trails"
72
  ),
@@ -74,7 +73,6 @@ interface = gr.Interface(
74
  value="""
75
  <h2 style='font-weight:bold;'>Recommended Skills</h2>
76
  <p><i>Skills recommended based on similar users in the system.</i></p>
77
- <p>No recommendations yet.</p>
78
  """,
79
  label="Recommended Skills Header"
80
  ),
@@ -84,12 +82,11 @@ interface = gr.Interface(
84
  label="Recommended Skills"
85
  )
86
  ],
87
- title="Skill Grapher",
88
  description="""
89
- Upload your professional document (resume, CV, professional summary, or performance review)
90
- to extract a structured skill profile.
91
- Extracted skills include confidence scores and evidence from your document.
92
- You will also receive skill recommendations based on similar users in the system.
93
  """
94
  )
95
 
 
59
  gr.Radio(EDUCATION_OPTIONS, label="Education"),
60
  gr.Radio(STATUS_OPTIONS, label="Professional Status"),
61
  gr.Textbox(label="Desired Role", placeholder="Enter the role you are interested in"),
62
+ gr.File(label="Upload professional document (.pdf or .docx)", file_types=[".pdf", ".docx"], type="filepath")
63
  ],
64
  outputs=[
65
  gr.HTML(
66
  value="""
67
  <h2 style='font-weight:bold;'>Extracted Skills</h2>
68
  <p><i>Tap the triangle to see evidence for each skill.</i></p>
 
69
  """,
70
  label="Extracted Skills + Evidence Trails"
71
  ),
 
73
  value="""
74
  <h2 style='font-weight:bold;'>Recommended Skills</h2>
75
  <p><i>Skills recommended based on similar users in the system.</i></p>
 
76
  """,
77
  label="Recommended Skills Header"
78
  ),
 
82
  label="Recommended Skills"
83
  )
84
  ],
85
+ title="SkillSense",
86
  description="""
87
+ Upload your professional document (resume, CV, professional summary, or pdf/docx of portfolio, linkedin, etc.)
88
+ and get a structured skill profile. Get skill recommendations based on other users' skills with similar interests.
89
+ (Currently resume,CV uploads render high-quality recommendations)
 
90
  """
91
  )
92