Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -23,9 +23,12 @@ 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"
|
27 |
-
prompt
|
|
|
|
|
28 |
prompt += f"<start_of_turn>user{message}<end_of_turn><start_of_turn>model"
|
|
|
29 |
return prompt
|
30 |
|
31 |
|
|
|
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)
|
32 |
return prompt
|
33 |
|
34 |
|