mirror of
https://github.com/langgenius/dify.git
synced 2026-03-15 20:07:23 +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>
17 lines
407 B
Python
17 lines
407 B
Python
from collections.abc import Sequence
|
|
|
|
from pydantic import Field
|
|
|
|
from dify_graph.entities.base_node_data import BaseNodeData
|
|
from dify_graph.enums import NodeType
|
|
from dify_graph.variables.input_entities import VariableEntity
|
|
|
|
|
|
class StartNodeData(BaseNodeData):
|
|
"""
|
|
Start Node Data
|
|
"""
|
|
|
|
type: NodeType = NodeType.START
|
|
variables: Sequence[VariableEntity] = Field(default_factory=list)
|