Skip to content
Snippets Groups Projects
Unverified Commit 11578cfa authored by Hollow Man's avatar Hollow Man Committed by GitHub
Browse files

Fix stream chat param error in CondenseQuestionChatEngine (#11856)

parent a77da419
No related branches found
No related tags found
No related merge requests found
...@@ -259,7 +259,8 @@ class CondenseQuestionChatEngine(BaseChatEngine): ...@@ -259,7 +259,8 @@ class CondenseQuestionChatEngine(BaseChatEngine):
sources=[tool_output], sources=[tool_output],
) )
thread = Thread( thread = Thread(
target=response.write_response_to_history, args=(self._memory, True) target=response.write_response_to_history,
args=(self._memory,),
) )
thread.start() thread.start()
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment