Update app.py
Browse files
app.py
CHANGED
@@ -108,6 +108,7 @@ def talk(prompt, history):
|
|
108 |
# formatted_prompt_with_history = formatted_prompt_with_history[:600] # to avoid memory issue
|
109 |
# print(formatted_prompt_with_history)
|
110 |
messages = [{"role":"system","content":SYS_PROMPT},{"role":"user","content":formatted_prompt}]
|
|
|
111 |
# binding the system context and new prompt for LLM
|
112 |
# the chat template structure should be based on text generation model format
|
113 |
|
|
|
108 |
# formatted_prompt_with_history = formatted_prompt_with_history[:600] # to avoid memory issue
|
109 |
# print(formatted_prompt_with_history)
|
110 |
messages = [{"role":"system","content":SYS_PROMPT},{"role":"user","content":formatted_prompt}]
|
111 |
+
print(messages)
|
112 |
# binding the system context and new prompt for LLM
|
113 |
# the chat template structure should be based on text generation model format
|
114 |
|