Documentation Index
Fetch the complete documentation index at: https://docs.dify.ai/llms.txt
Use this file to discover all available pages before exploring further.
Serial and Parallel Execution

- In series, nodes run one after another. Each node can read variables from any node earlier in the chain.
- In parallel, nodes run at the same time. They can’t read each other’s variables, but where parallel branches converge, the downstream node can read from all of them.
A single execution path supports up to 50 nodes. Self-hosted deployments can change this limit with the
MAX_TREE_DEPTH environment variable.Node Reuse
All nodes except User Input can be copied and pasted within the same workflow, across workflows, or across Dify instances, though there might be compatibility issues between Dify versions.Pasting across workflows or Dify instances requires the Dify page to be served over HTTPS or accessed via a loopback address (such as
http://localhost or http://127.0.0.1).- Workflow-specific resources, such as variables
- Workspace-specific resources, such as tools, plugins, and knowledge bases