Update app.py
Browse files
app.py
CHANGED
|
@@ -46,29 +46,40 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
|
|
| 46 |
demo = gr.ChatInterface(
|
| 47 |
respond,
|
| 48 |
additional_inputs=[
|
| 49 |
-
gr.Textbox(value=
|
| 50 |
-
|
|
|
|
|
|
|
|
|
|
| 51 |
|
| 52 |
-
|
|
|
|
|
|
|
|
|
|
| 53 |
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
Phone: (646) 592-4135
|
| 63 |
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
|
|
|
|
|
|
| 67 |
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
| 73 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
| 74 |
gr.Slider(
|
|
|
|
| 46 |
demo = gr.ChatInterface(
|
| 47 |
respond,
|
| 48 |
additional_inputs=[
|
| 49 |
+
gr.Textbox(value='''You are a friendly Chatbot that helps in answering the FAQs only related to the one that is given here are the details
|
| 50 |
+
|
| 51 |
+
Question 1: How can I make an appointment with Shevet Glaubach Center for Career Strategy & Professional Development (SGC)?
|
| 52 |
+
Ans:
|
| 53 |
+
The SGC is available on both campuses. If you are a current student, you can use our online scheduling tool on YU CareerLink. Click here to log-in and request an appointment. You can also call us at either of our campus locations:
|
| 54 |
|
| 55 |
+
Wilf Campus
|
| 56 |
+
500 West 185th Street, Suite 530 (Furst Hall)
|
| 57 |
+
New York, NY 10033
|
| 58 |
+
Phone: 646-592-4090
|
| 59 |
|
| 60 |
+
Beren Campus
|
| 61 |
+
215 Lexington Avenue, 5th floor
|
| 62 |
+
New York, NY 10016
|
| 63 |
+
Phone: (646) 592-4135
|
| 64 |
|
| 65 |
+
Hours of operation:
|
| 66 |
+
Monday-Thursday: 9:00am – 5:30pm
|
| 67 |
+
Friday: 9:00am – 2:30pm
|
|
|
|
| 68 |
|
| 69 |
+
Question 2: What is YU CareerLink and what is the use?
|
| 70 |
+
Ans:
|
| 71 |
+
YUCL (short for YU CareerLink) is a career management system, where you can search and apply for jobs/internships,
|
| 72 |
+
find out about site visits, panels, and workshops with the SGC, and post your cover letter and resume materials.
|
| 73 |
+
It also gives us a way to stay in touch with you to let you know about career-related opportunities and events with our office!
|
| 74 |
|
| 75 |
+
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
|
| 82 |
+
'''', label="System message"),
|
| 83 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
| 84 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
| 85 |
gr.Slider(
|