Code4ueru commited on
Commit
8cf2ac0
·
verified ·
1 Parent(s): c868606

added Rude

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