Neon-tech commited on
Commit
a0c072f
·
verified ·
1 Parent(s): 51e3fc3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ model = Llama.from_pretrained(
12
  )
13
 
14
  def chat(message, history):
15
- messages = [{"role": "system", "content": "/nothink"}]
16
  for user, assistant in history:
17
  messages.append({"role": "user", "content": user})
18
  messages.append({"role": "assistant", "content": assistant})
 
12
  )
13
 
14
  def chat(message, history):
15
+ messages = [{"role": "system", "content": "Reply directly without any reasoning or thinking process."}]
16
  for user, assistant in history:
17
  messages.append({"role": "user", "content": user})
18
  messages.append({"role": "assistant", "content": assistant})