Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -69,18 +69,19 @@ def gradio_interface() -> None:
|
|
69 |
<img align="center" src="https://www.built-environment-networking.com/content/uploads/2022/09/lloyds-bank-e1689067593452.png" alt="LOGO" width=322, height=156>
|
70 |
<br><h1 style="color:#006e49">Screening Assistant Chatbot</h1></center>""")
|
71 |
|
72 |
-
chatbot = gr.Chatbot()
|
73 |
-
|
74 |
with gr.Row():
|
75 |
-
with gr.Column(scale=
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
77 |
|
78 |
with gr.Row():
|
79 |
-
with gr.Column(scale=0.
|
80 |
-
|
81 |
-
with gr.Column(scale=0.
|
82 |
-
jd = gr.File(label="Job Description")
|
83 |
-
with gr.Column(scale=0.85):
|
84 |
clear = gr.ClearButton([msg, chatbot])
|
85 |
|
86 |
msg.submit(get_response, [msg, chatbot, resume, jd], [msg, chatbot])
|
|
|
69 |
<img align="center" src="https://www.built-environment-networking.com/content/uploads/2022/09/lloyds-bank-e1689067593452.png" alt="LOGO" width=322, height=156>
|
70 |
<br><h1 style="color:#006e49">Screening Assistant Chatbot</h1></center>""")
|
71 |
|
|
|
|
|
72 |
with gr.Row():
|
73 |
+
with gr.Column(scale=0.80):
|
74 |
+
chatbot = gr.Chatbot()
|
75 |
+
with gr.Column(scale=0.20):
|
76 |
+
with gr.Row():
|
77 |
+
resume = gr.File(label="Resume")
|
78 |
+
with gr.Row():
|
79 |
+
jd = gr.File(label="Job Description")
|
80 |
|
81 |
with gr.Row():
|
82 |
+
with gr.Column(scale=0.80):
|
83 |
+
msg = gr.Textbox(label="Question")
|
84 |
+
with gr.Column(scale=0.20):
|
|
|
|
|
85 |
clear = gr.ClearButton([msg, chatbot])
|
86 |
|
87 |
msg.submit(get_response, [msg, chatbot, resume, jd], [msg, chatbot])
|