mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-25 15:17:26 +08:00
🐛 fix(manager.py): fix incorrect assignment of langchain_object.result to result_dict["result"] to store the entire langchain_object instead
This commit is contained in:
@ -176,7 +176,7 @@ class ChatManager(Service):
|
||||
# so we need to change it to something else
|
||||
|
||||
result_dict = {
|
||||
"result": langchain_object.result,
|
||||
"result": langchain_object,
|
||||
"type": type(langchain_object),
|
||||
}
|
||||
self.cache_manager.upsert(client_id, result_dict)
|
||||
|
||||
Reference in New Issue
Block a user