enoreyes commited on
Commit
56b6358
·
1 Parent(s): 0c73df9

Update chain.py

Browse files
Files changed (1) hide show
  1. chain.py +1 -1
chain.py CHANGED
@@ -139,7 +139,7 @@ Answer in Markdown:"""
139
 
140
  def _get_chat_history(chat_history: List[Tuple[str, str]]):
141
  buffer = ""
142
- for human_s, ai_s in chat_history[-2:]:
143
  human = f"Human: " + human_s
144
  ai = f"Assistant: " + ai_s
145
  buffer += "\n" + "\n".join([human, ai])
 
139
 
140
  def _get_chat_history(chat_history: List[Tuple[str, str]]):
141
  buffer = ""
142
+ for human_s, ai_s in chat_history[-1:]:
143
  human = f"Human: " + human_s
144
  ai = f"Assistant: " + ai_s
145
  buffer += "\n" + "\n".join([human, ai])