mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-13 02:59:04 +08:00
chore: cleanup unchanged overridden method in subclasses of BaseNode (#14281)
This commit is contained in:
parent
93a5ffb037
commit
21e1443ed5
@ -1,6 +1,3 @@
|
|||||||
from collections.abc import Mapping, Sequence
|
|
||||||
from typing import Any
|
|
||||||
|
|
||||||
from core.workflow.entities.node_entities import NodeRunResult
|
from core.workflow.entities.node_entities import NodeRunResult
|
||||||
from core.workflow.nodes.base import BaseNode
|
from core.workflow.nodes.base import BaseNode
|
||||||
from core.workflow.nodes.end.entities import EndNodeData
|
from core.workflow.nodes.end.entities import EndNodeData
|
||||||
@ -30,20 +27,3 @@ class EndNode(BaseNode[EndNodeData]):
|
|||||||
inputs=outputs,
|
inputs=outputs,
|
||||||
outputs=outputs,
|
outputs=outputs,
|
||||||
)
|
)
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def _extract_variable_selector_to_variable_mapping(
|
|
||||||
cls,
|
|
||||||
*,
|
|
||||||
graph_config: Mapping[str, Any],
|
|
||||||
node_id: str,
|
|
||||||
node_data: EndNodeData,
|
|
||||||
) -> Mapping[str, Sequence[str]]:
|
|
||||||
"""
|
|
||||||
Extract variable selector to variable mapping
|
|
||||||
:param graph_config: graph config
|
|
||||||
:param node_id: node id
|
|
||||||
:param node_data: node data
|
|
||||||
:return:
|
|
||||||
"""
|
|
||||||
return {}
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
from collections.abc import Mapping, Sequence
|
from typing import Literal
|
||||||
from typing import Any, Literal
|
|
||||||
|
|
||||||
from typing_extensions import deprecated
|
from typing_extensions import deprecated
|
||||||
|
|
||||||
@ -88,23 +87,6 @@ class IfElseNode(BaseNode[IfElseNodeData]):
|
|||||||
|
|
||||||
return data
|
return data
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def _extract_variable_selector_to_variable_mapping(
|
|
||||||
cls,
|
|
||||||
*,
|
|
||||||
graph_config: Mapping[str, Any],
|
|
||||||
node_id: str,
|
|
||||||
node_data: IfElseNodeData,
|
|
||||||
) -> Mapping[str, Sequence[str]]:
|
|
||||||
"""
|
|
||||||
Extract variable selector to variable mapping
|
|
||||||
:param graph_config: graph config
|
|
||||||
:param node_id: node id
|
|
||||||
:param node_data: node data
|
|
||||||
:return:
|
|
||||||
"""
|
|
||||||
return {}
|
|
||||||
|
|
||||||
|
|
||||||
@deprecated("This function is deprecated. You should use the new cases structure.")
|
@deprecated("This function is deprecated. You should use the new cases structure.")
|
||||||
def _should_not_use_old_function(
|
def _should_not_use_old_function(
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
from collections.abc import Mapping, Sequence
|
|
||||||
from typing import Any
|
|
||||||
|
|
||||||
from core.workflow.entities.node_entities import NodeRunResult
|
from core.workflow.entities.node_entities import NodeRunResult
|
||||||
from core.workflow.nodes.base import BaseNode
|
from core.workflow.nodes.base import BaseNode
|
||||||
from core.workflow.nodes.enums import NodeType
|
from core.workflow.nodes.enums import NodeType
|
||||||
from core.workflow.nodes.iteration.entities import IterationNodeData, IterationStartNodeData
|
from core.workflow.nodes.iteration.entities import IterationStartNodeData
|
||||||
from models.workflow import WorkflowNodeExecutionStatus
|
from models.workflow import WorkflowNodeExecutionStatus
|
||||||
|
|
||||||
|
|
||||||
@ -21,16 +18,3 @@ class IterationStartNode(BaseNode):
|
|||||||
Run the node.
|
Run the node.
|
||||||
"""
|
"""
|
||||||
return NodeRunResult(status=WorkflowNodeExecutionStatus.SUCCEEDED)
|
return NodeRunResult(status=WorkflowNodeExecutionStatus.SUCCEEDED)
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def _extract_variable_selector_to_variable_mapping(
|
|
||||||
cls, graph_config: Mapping[str, Any], node_id: str, node_data: IterationNodeData
|
|
||||||
) -> Mapping[str, Sequence[str]]:
|
|
||||||
"""
|
|
||||||
Extract variable selector to variable mapping
|
|
||||||
:param graph_config: graph config
|
|
||||||
:param node_id: node id
|
|
||||||
:param node_data: node data
|
|
||||||
:return:
|
|
||||||
"""
|
|
||||||
return {}
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
from collections.abc import Mapping, Sequence
|
|
||||||
from typing import Any
|
|
||||||
|
|
||||||
from core.workflow.constants import SYSTEM_VARIABLE_NODE_ID
|
from core.workflow.constants import SYSTEM_VARIABLE_NODE_ID
|
||||||
from core.workflow.entities.node_entities import NodeRunResult
|
from core.workflow.entities.node_entities import NodeRunResult
|
||||||
from core.workflow.nodes.base import BaseNode
|
from core.workflow.nodes.base import BaseNode
|
||||||
@ -23,13 +20,3 @@ class StartNode(BaseNode[StartNodeData]):
|
|||||||
node_inputs[SYSTEM_VARIABLE_NODE_ID + "." + var] = system_inputs[var]
|
node_inputs[SYSTEM_VARIABLE_NODE_ID + "." + var] = system_inputs[var]
|
||||||
|
|
||||||
return NodeRunResult(status=WorkflowNodeExecutionStatus.SUCCEEDED, inputs=node_inputs, outputs=node_inputs)
|
return NodeRunResult(status=WorkflowNodeExecutionStatus.SUCCEEDED, inputs=node_inputs, outputs=node_inputs)
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def _extract_variable_selector_to_variable_mapping(
|
|
||||||
cls,
|
|
||||||
*,
|
|
||||||
graph_config: Mapping[str, Any],
|
|
||||||
node_id: str,
|
|
||||||
node_data: StartNodeData,
|
|
||||||
) -> Mapping[str, Sequence[str]]:
|
|
||||||
return {}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user