Update app.py
Browse files
app.py
CHANGED
@@ -80,12 +80,12 @@ def format_prompt(prompt,retrieved_documents,k,history,memory_limit=3):
|
|
80 |
history = history[-memory_limit:]
|
81 |
|
82 |
print("checkwohist")
|
83 |
-
PROMPT = PROMPT + f"{history[0][0]} [/INST] {history[0][1]} </s>"
|
84 |
-
print("checkwthhist")
|
85 |
-
print(PROMPT)
|
86 |
# Handle conversation history
|
87 |
-
for user_message, bot_message in history[
|
88 |
-
PROMPT += f"<s>[INST] {
|
89 |
print("checkwthhist2")
|
90 |
print(PROMPT)
|
91 |
return PROMPT
|
|
|
80 |
history = history[-memory_limit:]
|
81 |
|
82 |
print("checkwohist")
|
83 |
+
# PROMPT = PROMPT + f"{history[0][0]} [/INST] {history[0][1]} </s>"
|
84 |
+
# print("checkwthhist")
|
85 |
+
# print(PROMPT)
|
86 |
# Handle conversation history
|
87 |
+
for user_message, bot_message in history[0:]:
|
88 |
+
PROMPT += f"<s>[INST] {user_message} [/INST] {bot_message} </s>"
|
89 |
print("checkwthhist2")
|
90 |
print(PROMPT)
|
91 |
return PROMPT
|