Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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)
|