Omnibus commited on
Commit
19ac70e
·
verified ·
1 Parent(s): 0ead5c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -23,9 +23,9 @@ def format_prompt(message, history):
23
  if history:
24
  #<start_of_turn>userHow does the brain work?<end_of_turn><start_of_turn>model
25
  for user_prompt, bot_response in history:
26
- prompt += f"{user_prompt}"
27
  print(prompt)
28
- prompt += f"{bot_response}"
29
  print(prompt)
30
  prompt += f"<start_of_turn>user{message}<end_of_turn><start_of_turn>model"
31
  print(prompt)
 
23
  if history:
24
  #<start_of_turn>userHow does the brain work?<end_of_turn><start_of_turn>model
25
  for user_prompt, bot_response in history:
26
+ prompt += f"{user_prompt}\n"
27
  print(prompt)
28
+ prompt += f"{bot_response}\n"
29
  print(prompt)
30
  prompt += f"<start_of_turn>user{message}<end_of_turn><start_of_turn>model"
31
  print(prompt)