Namitg02 commited on
Commit
e966c44
·
verified ·
1 Parent(s): 8daa156

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
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[1:]:
88
- PROMPT += f"<s>[INST] {user_msg} [/INST] {model_answer} </s>"
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