mirror of
https://github.com/langgenius/dify.git
synced 2026-03-04 23:36:20 +08:00
12 lines
263 B
Python
12 lines
263 B
Python
from dify_graph.nodes.base import BaseNodeData
|
|
from dify_graph.nodes.base.entities import VariableSelector
|
|
|
|
|
|
class TemplateTransformNodeData(BaseNodeData):
|
|
"""
|
|
Template Transform Node Data.
|
|
"""
|
|
|
|
variables: list[VariableSelector]
|
|
template: str
|