2024-07-01 01:45:59 +00:00
|
|
|
export enum WorkflowType {
|
|
|
|
|
Base = 'base-node',
|
|
|
|
|
Start = 'start-node',
|
|
|
|
|
AiChat = 'ai-chat-node',
|
|
|
|
|
SearchDataset = 'search-dataset-node',
|
|
|
|
|
Question = 'question-node',
|
|
|
|
|
Condition = 'condition-node',
|
2024-08-15 09:17:25 +00:00
|
|
|
Reply = 'reply-node',
|
|
|
|
|
FunctionLib = 'function-lib-node',
|
2024-09-05 03:28:21 +00:00
|
|
|
FunctionLibCustom = 'function-node',
|
2024-11-11 10:34:54 +00:00
|
|
|
RrerankerNode = 'reranker-node',
|
2024-11-11 07:48:56 +00:00
|
|
|
Application = 'application-node',
|
|
|
|
|
DocumentExtractNode = 'document-extract-node',
|
|
|
|
|
ImageUnderstandNode = 'image-understand-node',
|
2024-12-12 02:04:46 +00:00
|
|
|
FormNode = 'form-node',
|
|
|
|
|
TextToSpeechNode = 'text-to-speech-node',
|
|
|
|
|
SpeechToTextNode = 'speech-to-text-node',
|
|
|
|
|
ImageGenerateNode = 'image-generate-node'
|
2024-07-01 01:45:59 +00:00
|
|
|
}
|