syedmudassir16 commited on
Commit
add30ad
·
verified ·
1 Parent(s): 4ef4043

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +1 -1
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>{fixed_prompt}"
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