refactor: update variable naming for consistency and improve data source handling in pipeline components

This commit is contained in:
twwu
2025-05-20 11:42:22 +08:00
parent 314a2f9be8
commit 14a9052d60
11 changed files with 183 additions and 111 deletions

View File

@ -1,3 +1,6 @@
import type { CommonNodeType } from '@/app/components/workflow/types'
import type { RAGPipelineVariables } from '@/models/pipeline'
export type DataSourceNodeType = CommonNodeType
export type DataSourceNodeType = CommonNodeType & {
variables: RAGPipelineVariables
}