mirror of
https://github.com/langgenius/dify.git
synced 2025-11-15 10:52:55 +00:00
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: jyong <718720800@qq.com> Co-authored-by: Wu Tianwei <30284043+WTW0313@users.noreply.github.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: quicksand <quicksandzn@gmail.com> Co-authored-by: Jyong <76649700+JohnJyong@users.noreply.github.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: Yongtao Huang <yongtaoh2022@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: Hanqing Zhao <sherry9277@gmail.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Harry <xh001x@hotmail.com>
45 lines
2.0 KiB
TypeScript
45 lines
2.0 KiB
TypeScript
import llmDefault from '@/app/components/workflow/nodes/llm/default'
|
|
import knowledgeRetrievalDefault from '@/app/components/workflow/nodes/knowledge-retrieval/default'
|
|
import agentDefault from '@/app/components/workflow/nodes/agent/default'
|
|
|
|
import questionClassifierDefault from '@/app/components/workflow/nodes/question-classifier/default'
|
|
|
|
import ifElseDefault from '@/app/components/workflow/nodes/if-else/default'
|
|
import iterationDefault from '@/app/components/workflow/nodes/iteration/default'
|
|
import iterationStartDefault from '@/app/components/workflow/nodes/iteration-start/default'
|
|
import loopDefault from '@/app/components/workflow/nodes/loop/default'
|
|
import loopStartDefault from '@/app/components/workflow/nodes/loop-start/default'
|
|
import loopEndDefault from '@/app/components/workflow/nodes/loop-end/default'
|
|
|
|
import codeDefault from '@/app/components/workflow/nodes/code/default'
|
|
import templateTransformDefault from '@/app/components/workflow/nodes/template-transform/default'
|
|
import variableAggregatorDefault from '@/app/components/workflow/nodes/variable-assigner/default'
|
|
import documentExtractorDefault from '@/app/components/workflow/nodes/document-extractor/default'
|
|
import assignerDefault from '@/app/components/workflow/nodes/assigner/default'
|
|
import httpRequestDefault from '@/app/components/workflow/nodes/http/default'
|
|
import parameterExtractorDefault from '@/app/components/workflow/nodes/parameter-extractor/default'
|
|
import listOperatorDefault from '@/app/components/workflow/nodes/list-operator/default'
|
|
import toolDefault from '@/app/components/workflow/nodes/tool/default'
|
|
|
|
export const WORKFLOW_COMMON_NODES = [
|
|
llmDefault,
|
|
knowledgeRetrievalDefault,
|
|
agentDefault,
|
|
questionClassifierDefault,
|
|
ifElseDefault,
|
|
iterationDefault,
|
|
iterationStartDefault,
|
|
loopDefault,
|
|
loopStartDefault,
|
|
loopEndDefault,
|
|
codeDefault,
|
|
templateTransformDefault,
|
|
variableAggregatorDefault,
|
|
documentExtractorDefault,
|
|
assignerDefault,
|
|
parameterExtractorDefault,
|
|
httpRequestDefault,
|
|
listOperatorDefault,
|
|
toolDefault,
|
|
]
|