Update utils.py
Browse files
utils.py
CHANGED
@@ -261,7 +261,7 @@ def format_prompt(message, history):
|
|
261 |
User: Lets turn up the music and have some fun!
|
262 |
LLM Response: Party
|
263 |
"""
|
264 |
-
prompt = f"<s>{
|
265 |
for user_prompt, bot_response in history:
|
266 |
prompt += f"\n User:{user_prompt}\n LLM Response:{bot_response}"
|
267 |
|
|
|
261 |
User: Lets turn up the music and have some fun!
|
262 |
LLM Response: Party
|
263 |
"""
|
264 |
+
prompt = f"<s>{system_message}"
|
265 |
for user_prompt, bot_response in history:
|
266 |
prompt += f"\n User:{user_prompt}\n LLM Response:{bot_response}"
|
267 |
|