mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
35 lines
681 B
TypeScript
35 lines
681 B
TypeScript
import { ModuleItemType } from '../module/type';
|
|
|
|
export const defaultModules: ModuleItemType[] = [
|
|
{
|
|
moduleId: 'custom-output',
|
|
name: '自定义输出',
|
|
flowType: 'pluginOutput',
|
|
showStatus: false,
|
|
position: {
|
|
x: 994.1266684738011,
|
|
y: -45.87689365278443
|
|
},
|
|
inputs: [],
|
|
outputs: []
|
|
},
|
|
{
|
|
moduleId: 'custom-input',
|
|
name: '自定义输入',
|
|
flowType: 'pluginInput',
|
|
showStatus: false,
|
|
position: {
|
|
x: 457.57860319995154,
|
|
y: -44.25099042468186
|
|
},
|
|
inputs: [],
|
|
outputs: []
|
|
}
|
|
];
|
|
|
|
export enum PluginSourceEnum {
|
|
personal = 'personal',
|
|
community = 'community',
|
|
commercial = 'commercial'
|
|
}
|