You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcgj-dify-1.7.0/web/app/components/workflow/nodes/knowledge-base/default.ts

22 lines
503 B
TypeScript

import type { NodeDefault } from '../../types'
import type { KnowledgeBaseNodeType } from './types'
import { genNodeMetaData } from '@/app/components/workflow/utils'
import { BlockEnum } from '@/app/components/workflow/types'
const nodeDefault: NodeDefault<KnowledgeBaseNodeType> = {
...genNodeMetaData({
sort: 3.1,
type: BlockEnum.KnowledgeBase,
}),
defaultValue: {
},
checkValid() {
return {
isValid: true,
errorMessage: '',
}
},
}
export default nodeDefault