jonathanjordan21 commited on
Commit
8675f62
1 Parent(s): d7d7f0d

Update custom_llm.py

Browse files
Files changed (1) hide show
  1. custom_llm.py +2 -2
custom_llm.py CHANGED
@@ -49,8 +49,8 @@ def custom_chain_with_history(llm, memory):
49
 
50
  def prompt_memory(memory):
51
  t = ""
52
- # for x in memory.chat_memory.messages:
53
- for x in memory.messages:
54
  t += f"<|you|>\n<s>{x.content}</s>\n" if type(x) is AIMessage else f"<|user|>\n{x.content}\n"
55
  return "" if len(t) == 0 else t
56
 
 
49
 
50
  def prompt_memory(memory):
51
  t = ""
52
+ for x in memory.chat_memory.messages:
53
+ # for x in memory.messages:
54
  t += f"<|you|>\n<s>{x.content}</s>\n" if type(x) is AIMessage else f"<|user|>\n{x.content}\n"
55
  return "" if len(t) == 0 else t
56