Su4374651 commited on
Commit
329336a
1 Parent(s): a0e1ada

Update app1.py

Browse files
Files changed (1) hide show
  1. app1.py +7 -12
app1.py CHANGED
@@ -58,14 +58,14 @@ def respond(
58
  temperature: float,
59
  top_p: float,
60
  ):
61
- system_message = "You are a knowledgeable DBT coach. You always talk about one options at at a time. you add greetings and you ask questions like real counsellor. Remember you are helpful and a good listener. You are concise and never ask multiple questions, or give long response. You response like a human counsellor accurately and correctly. consider the users as your client. and practice verbal cues only where needed. Remember you must be respectful and consider that the user may not be in a situation to deal with a wordy chatbot. You Use DBT book to guide users through DBT exercises and provide helpful information. When needed only then you ask one follow up question at a time to guide the user to ask appropiate question. You avoid giving suggestion if any dangerous act is mentioned by the user and refer to call someone or emergency."
62
  messages = [{"role": "system", "content": system_message}]
63
 
64
  for val in history:
65
  if val[0]:
66
  messages.append({"role": "user", "content": val[0]})
67
  if val[1]:
68
- messages.append({"role": "assistant", "content": val[1]})
69
 
70
  messages.append({"role": "user", "content": message})
71
 
@@ -89,7 +89,7 @@ def respond(
89
  demo = gr.Blocks()
90
 
91
  with demo:
92
- gr.Markdown("🧘‍♀️ **Dialectical Behaviour Therapy**")
93
  gr.Markdown(
94
  "‼️Disclaimer: This chatbot is based on a DBT exercise book that is publicly available. "
95
  "We are not medical practitioners, and the use of this chatbot is at your own responsibility.‼️"
@@ -98,16 +98,11 @@ with demo:
98
  chatbot = gr.ChatInterface(
99
  respond,
100
  examples=[
101
- ["I feel overwhelmed with work."],
102
- ["Can you guide me through a quick meditation?"],
103
- ["How do I stop worrying about things I can't control?"],
104
- ["What are some DBT skills for managing anxiety?"],
105
- ["Can you explain mindfulness in DBT?"],
106
- ["I am interested in DBT excercises"],
107
- ["I feel restless. Please help me."],
108
- ["I have destructive thoughts coming to my mind repetatively."]
109
  ],
110
- title='Dialectical Behaviour Therapy Assistant 👩‍⚕️'
111
  )
112
 
113
  if __name__ == "__main__":
 
58
  temperature: float,
59
  top_p: float,
60
  ):
61
+ system_message = "I offer mock interviews, personalized feedback, and valuable insights into common interview questions and industry-specific tips. My goal is to boost your confidence, improve your communication skills, and equip you with the tools needed to impress potential employers."
62
  messages = [{"role": "system", "content": system_message}]
63
 
64
  for val in history:
65
  if val[0]:
66
  messages.append({"role": "user", "content": val[0]})
67
  if val[1]:
68
+ messages.append({"role": "coach", "content": val[1]})
69
 
70
  messages.append({"role": "user", "content": message})
71
 
 
89
  demo = gr.Blocks()
90
 
91
  with demo:
92
+ gr.Markdown("**Job Interview Prep Coach**")
93
  gr.Markdown(
94
  "‼️Disclaimer: This chatbot is based on a DBT exercise book that is publicly available. "
95
  "We are not medical practitioners, and the use of this chatbot is at your own responsibility.‼️"
 
98
  chatbot = gr.ChatInterface(
99
  respond,
100
  examples=[
101
+ ["What are the most common mistakes candidates make during interviews, and how can I avoid them?"],
102
+ ["Do you have any tips for handling nerves or anxiety during interviews?"],
103
+ ["What are effective strategies for answering behavioral interview questions?"]
 
 
 
 
 
104
  ],
105
+ title='Job Interview Prep Coach'
106
  )
107
 
108
  if __name__ == "__main__":