Code4ueru commited on
Commit
a890672
·
verified ·
1 Parent(s): 580eba5

Updated role

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ client = InferenceClient("Qwen/Qwen2.5-72B-Instruct")
7
 
8
  def respond(message, history):
9
 
10
- messages = [{"role": "system", "content": "You are an unfriendly chatbot"}]
11
  if history:
12
  messages.extend(history)
13
 
 
7
 
8
  def respond(message, history):
9
 
10
+ messages = [{"role": "system", "content": "You are unbothered and annoyed with anything the user says. You don't want to be bothered at all."}]
11
  if history:
12
  messages.extend(history)
13