mirror of
https://github.com/langgenius/dify.git
synced 2025-11-22 07:56:37 +00:00
Signed-off-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: Stream <Stream_2@qq.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zhsama <torvalds@linux.do> Co-authored-by: Harry <xh001x@hotmail.com> Co-authored-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: yessenia <yessenia.contact@gmail.com> Co-authored-by: hjlarry <hjlarry@163.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: WTW0313 <twwu@dify.ai> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
156 lines
3.5 KiB
TypeScript
156 lines
3.5 KiB
TypeScript
import type { Block } from '../types'
|
|
import { BlockEnum } from '../types'
|
|
import { BlockClassificationEnum } from './types'
|
|
|
|
export const BLOCK_CLASSIFICATIONS: string[] = [
|
|
BlockClassificationEnum.Default,
|
|
BlockClassificationEnum.QuestionUnderstand,
|
|
BlockClassificationEnum.Logic,
|
|
BlockClassificationEnum.Transform,
|
|
BlockClassificationEnum.Utilities,
|
|
]
|
|
|
|
export const DEFAULT_FILE_EXTENSIONS_IN_LOCAL_FILE_DATA_SOURCE = [
|
|
'txt',
|
|
'markdown',
|
|
'mdx',
|
|
'pdf',
|
|
'html',
|
|
'xlsx',
|
|
'xls',
|
|
'vtt',
|
|
'properties',
|
|
'doc',
|
|
'docx',
|
|
'csv',
|
|
'eml',
|
|
'msg',
|
|
'pptx',
|
|
'xml',
|
|
'epub',
|
|
'ppt',
|
|
'md',
|
|
]
|
|
|
|
export const START_BLOCKS: Block[] = [
|
|
{
|
|
classification: BlockClassificationEnum.Default,
|
|
type: BlockEnum.Start,
|
|
title: 'User Input',
|
|
description: 'Traditional start node for user input',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Default,
|
|
type: BlockEnum.TriggerSchedule,
|
|
title: 'Schedule Trigger',
|
|
description: 'Time-based workflow trigger',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Default,
|
|
type: BlockEnum.TriggerWebhook,
|
|
title: 'Webhook Trigger',
|
|
description: 'HTTP callback trigger',
|
|
},
|
|
]
|
|
|
|
export const ENTRY_NODE_TYPES = [
|
|
BlockEnum.Start,
|
|
BlockEnum.TriggerSchedule,
|
|
BlockEnum.TriggerWebhook,
|
|
BlockEnum.TriggerPlugin,
|
|
] as const
|
|
|
|
export const BLOCKS: Block[] = [
|
|
{
|
|
classification: BlockClassificationEnum.Default,
|
|
type: BlockEnum.LLM,
|
|
title: 'LLM',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Default,
|
|
type: BlockEnum.KnowledgeRetrieval,
|
|
title: 'Knowledge Retrieval',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Default,
|
|
type: BlockEnum.End,
|
|
title: 'End',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Default,
|
|
type: BlockEnum.Answer,
|
|
title: 'Direct Answer',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.QuestionUnderstand,
|
|
type: BlockEnum.QuestionClassifier,
|
|
title: 'Question Classifier',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Logic,
|
|
type: BlockEnum.IfElse,
|
|
title: 'IF/ELSE',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Logic,
|
|
type: BlockEnum.LoopEnd,
|
|
title: 'Exit Loop',
|
|
description: '',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Logic,
|
|
type: BlockEnum.Iteration,
|
|
title: 'Iteration',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Logic,
|
|
type: BlockEnum.Loop,
|
|
title: 'Loop',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Transform,
|
|
type: BlockEnum.Code,
|
|
title: 'Code',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Transform,
|
|
type: BlockEnum.TemplateTransform,
|
|
title: 'Templating Transform',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Transform,
|
|
type: BlockEnum.VariableAggregator,
|
|
title: 'Variable Aggregator',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Transform,
|
|
type: BlockEnum.DocExtractor,
|
|
title: 'Doc Extractor',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Transform,
|
|
type: BlockEnum.Assigner,
|
|
title: 'Variable Assigner',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Transform,
|
|
type: BlockEnum.ParameterExtractor,
|
|
title: 'Parameter Extractor',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Utilities,
|
|
type: BlockEnum.HttpRequest,
|
|
title: 'HTTP Request',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Utilities,
|
|
type: BlockEnum.ListFilter,
|
|
title: 'List Filter',
|
|
},
|
|
{
|
|
classification: BlockClassificationEnum.Default,
|
|
type: BlockEnum.Agent,
|
|
title: 'Agent',
|
|
},
|
|
]
|