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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ openai.api_key = os.getenv("OPENAI_API_KEY")
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})
 
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 do not response using lists while explaining things and don't say long sentences. "})
30
  for conv in chatbot:
31
  user = conv[0]
32
  messages.append({"role": "user", "content": user})