mirror of
https://github.com/langgenius/dify.git
synced 2025-07-15 21:24:23 +00:00
28 lines
813 B
TypeScript
28 lines
813 B
TypeScript
![]() |
import { BlockEnum } from '../../types'
|
||
|
import type { NodeDefault } from '../../types'
|
||
|
import type { DataSourceNodeType } from './types'
|
||
|
import { ALL_CHAT_AVAILABLE_BLOCKS, ALL_COMPLETION_AVAILABLE_BLOCKS } from '@/app/components/workflow/blocks'
|
||
|
|
||
|
const nodeDefault: NodeDefault<DataSourceNodeType> = {
|
||
|
defaultValue: {
|
||
|
},
|
||
|
getAvailablePrevNodes(isChatMode: boolean) {
|
||
|
const nodes = isChatMode
|
||
|
? ALL_CHAT_AVAILABLE_BLOCKS
|
||
|
: ALL_COMPLETION_AVAILABLE_BLOCKS.filter(type => type !== BlockEnum.End)
|
||
|
return nodes
|
||
|
},
|
||
|
getAvailableNextNodes(isChatMode: boolean) {
|
||
|
const nodes = isChatMode ? ALL_CHAT_AVAILABLE_BLOCKS : ALL_COMPLETION_AVAILABLE_BLOCKS
|
||
|
return nodes
|
||
|
},
|
||
|
checkValid() {
|
||
|
return {
|
||
|
isValid: true,
|
||
|
errorMessage: '',
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
|
||
|
export default nodeDefault
|