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):
sources=[tool_output],
)
thread = Thread(
target=response.write_response_to_history, args=(self._memory, True)
target=response.write_response_to_history,
args=(self._memory,),
)
thread.start()
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment