robertselvam commited on
Commit
630942b
·
verified ·
1 Parent(s): 2379f2a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -71,20 +71,20 @@ def gradio_interface() -> None:
71
  <br><h1 style="color:#006e49">Screening Assistant Chatbot</h1></center>""")
72
 
73
  with gr.Row():
74
- with gr.Column(scale=0.20):
75
- resume = gr.File(label="Resume")
76
- with gr.Column(scale=0.20):
77
- jd = gr.File(label="Job Description")
78
 
79
  with gr.Row():
80
- with gr.Column(scale=0.80):
81
  chatbot = gr.Chatbot()
82
 
83
  with gr.Row():
84
  with gr.Column(scale=0.80):
85
- msg = gr.Textbox(label="Question")
86
  with gr.Column(scale=0.20):
87
- clear = gr.ClearButton([msg, chatbot])
88
 
89
  msg.submit(get_response, [msg, chatbot, resume, jd], [msg, chatbot])
90
 
 
71
  <br><h1 style="color:#006e49">Screening Assistant Chatbot</h1></center>""")
72
 
73
  with gr.Row():
74
+ with gr.Column(scale=0.50):
75
+ resume = gr.File(label="Resume", elem_classes="resume")
76
+ with gr.Column(scale=0.50):
77
+ jd = gr.File(label="Job Description", elem_classes="jd")
78
 
79
  with gr.Row():
80
+ with gr.Column():
81
  chatbot = gr.Chatbot()
82
 
83
  with gr.Row():
84
  with gr.Column(scale=0.80):
85
+ msg = gr.Textbox(label="Question", show_label=False, placeholder="Question...")
86
  with gr.Column(scale=0.20):
87
+ clear = gr.ClearButton([msg, chatbot], elem_classes="clear")
88
 
89
  msg.submit(get_response, [msg, chatbot, resume, jd], [msg, chatbot])
90