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