KiraPGR commited on
Commit
394aba3
·
verified ·
1 Parent(s): afcb072

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -26,6 +26,7 @@ openai.api_key = os.getenv("OPENAI_API_KEY")
26
  def predict(inputs, chatbot):
27
 
28
  messages = []
 
29
  for conv in chatbot:
30
  user = conv[0]
31
  messages.append({"role": "user", "content": user})
 
26
  def predict(inputs, chatbot):
27
 
28
  messages = []
29
+ messages.append({"role": "system", "content": "You are a discord bot called 'QuteAI', make your response like human chatting, humans usually response using lists and don't say long sentences. "})
30
  for conv in chatbot:
31
  user = conv[0]
32
  messages.append({"role": "user", "content": user})