mirror of
https://github.com/langgenius/dify.git
synced 2026-05-03 17:08:03 +08:00
feat: enhance input field management with internationalization support and improved state handling
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import type { InputVarType } from '@/app/components/workflow/types'
|
||||
import type { InputVar, InputVarType } from '@/app/components/workflow/types'
|
||||
import type { DSLImportMode, DSLImportStatus } from './app'
|
||||
import type { ChunkingMode, IconInfo } from './datasets'
|
||||
import type { Dependency } from '@/app/components/plugins/types'
|
||||
@ -85,3 +85,10 @@ export type Variables = {
|
||||
export type PipelineProcessingParamsResponse = {
|
||||
variables: Variables[]
|
||||
}
|
||||
|
||||
export type RAGPipelineVariable = InputVar
|
||||
|
||||
export type RAGPipelineVariables = Array<{
|
||||
nodeId: string
|
||||
variables: RAGPipelineVariable[]
|
||||
}>
|
||||
|
||||
Reference in New Issue
Block a user