mirror of
https://github.com/langgenius/dify.git
synced 2026-05-01 16:08:04 +08:00
refactor(api): move workflow knowledge nodes and trigger nodes (#33445)
This commit is contained in:
@ -15,7 +15,7 @@
|
||||
# WorkflowNodeExecution,
|
||||
# WorkflowNodeExecutionStatus,
|
||||
# )
|
||||
# from dify_graph.enums import NodeType
|
||||
# from dify_graph.enums import BuiltinNodeTypes
|
||||
# from libs.datetime_utils import naive_utc_now
|
||||
# from models import WorkflowNodeExecutionModel
|
||||
# from models.enums import ExecutionOffLoadType
|
||||
@ -41,7 +41,7 @@
|
||||
# workflow_execution_id=str(uuid4()),
|
||||
# index=1,
|
||||
# node_id="test_node",
|
||||
# node_type=NodeType.LLM,
|
||||
# node_type=BuiltinNodeTypes.LLM,
|
||||
# title="Test Node",
|
||||
# inputs={"input_key": "input_value"},
|
||||
# outputs={"output_key": "output_value"},
|
||||
@ -134,7 +134,7 @@
|
||||
# workflow_execution_id=str(uuid4()),
|
||||
# index=1,
|
||||
# node_id="test_node",
|
||||
# node_type=NodeType.LLM,
|
||||
# node_type=BuiltinNodeTypes.LLM,
|
||||
# title="Test Node",
|
||||
# inputs=large_data,
|
||||
# outputs=large_data,
|
||||
|
||||
Reference in New Issue
Block a user