mirror of
https://github.com/langgenius/dify.git
synced 2026-03-13 11:07:40 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
14 lines
363 B
Python
14 lines
363 B
Python
from dify_graph.entities.base_node_data import BaseNodeData
|
|
from dify_graph.enums import NodeType
|
|
from dify_graph.nodes.base.entities import VariableSelector
|
|
|
|
|
|
class TemplateTransformNodeData(BaseNodeData):
|
|
"""
|
|
Template Transform Node Data.
|
|
"""
|
|
|
|
type: NodeType = NodeType.TEMPLATE_TRANSFORM
|
|
variables: list[VariableSelector]
|
|
template: str
|