robertselvam commited on
Commit
511f751
1 Parent(s): b833576

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -239,15 +239,15 @@ class Resume_Overall:
239
  jd_btn = gr.Button(value="Submit")
240
  with gr.Row():
241
  output_text1 = gr.Textbox(label="Screening Question")
242
- with gr.TabItem("Screening Question"):
243
  with gr.Row():
244
- with gr.Column():
245
  rolls = gr.Textbox(label="Role")
246
- with gr.Column():
247
  experience = gr.Textbox(label="Experience")
248
- with gr.Row():
249
  get_jd_btn = gr.Button("Generate JD")
250
- with gr.Row():
251
  result_jd = gr.Textbox(label="Job Description",lines=8)
252
 
253
  get_jd_btn.click(self.generate_job_description, [rolls,experience], result_jd)
 
239
  jd_btn = gr.Button(value="Submit")
240
  with gr.Row():
241
  output_text1 = gr.Textbox(label="Screening Question")
242
+ with gr.TabItem("Generate JD"):
243
  with gr.Row():
244
+ with gr.Column(elem_id="col-container"):
245
  rolls = gr.Textbox(label="Role")
246
+ with gr.Column(elem_id="col-container"):
247
  experience = gr.Textbox(label="Experience")
248
+ with gr.Row(elem_id="col-container"):
249
  get_jd_btn = gr.Button("Generate JD")
250
+ with gr.Row(elem_id="col-container"):
251
  result_jd = gr.Textbox(label="Job Description",lines=8)
252
 
253
  get_jd_btn.click(self.generate_job_description, [rolls,experience], result_jd)