修改错误的逻辑

This commit is contained in:
2025-09-01 17:34:47 +08:00
parent c54cdb4284
commit e0941937da
+1 -1
View File
@@ -357,7 +357,7 @@ class DifyTool:
""" """
根据会话 ID 从 'messages' 表中获取会话消息信息。 根据会话 ID 从 'messages' 表中获取会话消息信息。
""" """
return self.dify_pgsql.get_app_conversations(conversation_id) return self.dify_pgsql.get_conversation_messages(conversation_id)
def get_workflow_node_executions_info(self, workflow_run_id:str): def get_workflow_node_executions_info(self, workflow_run_id:str):
return self.dify_pgsql.get_workflow_node_executions_info(workflow_run_id) return self.dify_pgsql.get_workflow_node_executions_info(workflow_run_id)