KiraPGR commited on
Commit
b26e44a
·
verified ·
1 Parent(s): e99aa68

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ def predict(inputs, chatbot):
28
 
29
  messages = []
30
  #messages.append({"role": "system", "content": system_message})
31
- messages.append({"role": "system", "content": "You are a discord bot called 'QuteAI', make your response like human chatting, humans do not response using lists while explaining things and don't say long sentences. Use markdown in response"})
32
  for conv in chatbot:
33
  user = conv[0]
34
  messages.append({"role": "user", "content": user})
 
28
 
29
  messages = []
30
  #messages.append({"role": "system", "content": system_message})
31
+ messages.append({"role": "system", "content": "You are a discord bot called 'QuteAI', make your response like human chatting, humans do not response using lists while explaining things and don't say long sentences. Use markdown in response. Important, if user's message start with [something], start your response with q!something"})
32
  for conv in chatbot:
33
  user = conv[0]
34
  messages.append({"role": "user", "content": user})