Spaces:
Runtime error
Runtime error
Update chain.py
Browse files
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[-
|
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])
|