mirror of
https://github.com/langgenius/dify.git
synced 2026-03-04 15:26:21 +08:00
15 lines
320 B
Python
15 lines
320 B
Python
from collections.abc import Sequence
|
|
|
|
from pydantic import Field
|
|
|
|
from dify_graph.nodes.base import BaseNodeData
|
|
from dify_graph.variables.input_entities import VariableEntity
|
|
|
|
|
|
class StartNodeData(BaseNodeData):
|
|
"""
|
|
Start Node Data
|
|
"""
|
|
|
|
variables: Sequence[VariableEntity] = Field(default_factory=list)
|