Namitg02 commited on
Commit
c6f2c3d
·
verified ·
1 Parent(s): ed33a3d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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