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

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. "})
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"})
32
  for conv in chatbot:
33
  user = conv[0]
34
  messages.append({"role": "user", "content": user})