mirror of
https://gitee.com/ByteDance/flowgram.ai.git
synced 2025-07-07 17:43:29 +08:00
* fix(container): node move out container abnormal flashing * chore(demo): update initial data * feat(demo): loop built in start & end node * chore(demo): update initial data
27 lines
808 B
TypeScript
27 lines
808 B
TypeScript
/**
|
|
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
import { FlowNodeRegistry } from '../typings';
|
|
import { StartNodeRegistry } from './start';
|
|
import { LoopNodeRegistry } from './loop';
|
|
import { LLMNodeRegistry } from './llm';
|
|
import { EndNodeRegistry } from './end';
|
|
import { ConditionNodeRegistry } from './condition';
|
|
import { CommentNodeRegistry } from './comment';
|
|
import { BlockStartNodeRegistry } from './block-start';
|
|
import { BlockEndNodeRegistry } from './block-end';
|
|
export { WorkflowNodeType } from './constants';
|
|
|
|
export const nodeRegistries: FlowNodeRegistry[] = [
|
|
ConditionNodeRegistry,
|
|
StartNodeRegistry,
|
|
EndNodeRegistry,
|
|
LLMNodeRegistry,
|
|
LoopNodeRegistry,
|
|
CommentNodeRegistry,
|
|
BlockStartNodeRegistry,
|
|
BlockEndNodeRegistry,
|
|
];
|