| 
                        123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 | 
                        - import type { Edge, EnvironmentVariable, Node, SupportUploadFileTypes } from '@/app/components/workflow/types'
 - import type { DSLImportMode, DSLImportStatus } from './app'
 - import type { ChunkingMode, DatasetPermission, DocumentIndexingStatus, FileIndexingEstimateResponse, IconInfo } from './datasets'
 - import type { Dependency } from '@/app/components/plugins/types'
 - import type { AppIconSelection } from '@/app/components/base/app-icon-picker'
 - import type { Viewport } from 'reactflow'
 - import type { TransferMethod } from '@/types/app'
 - 
 - export enum DatasourceType {
 -   localFile = 'local_file',
 -   onlineDocument = 'online_document',
 -   websiteCrawl = 'website_crawl',
 - }
 - 
 - export type PipelineTemplateListParams = {
 -   type: 'built-in' | 'customized'
 - }
 - 
 - export type PipelineTemplate = {
 -   id: string
 -   name: string
 -   icon_info: IconInfo
 -   description: string
 -   position: number
 -   doc_form: ChunkingMode
 - }
 - 
 - export type PipelineTemplateListResponse = {
 -   pipelines: PipelineTemplate[]
 - }
 - 
 - export type PipelineTemplateByIdResponse = {
 -   name: string
 -   icon_info: IconInfo
 -   description: string
 -   author: string // todo: TBD
 -   structure: string // todo: TBD
 -   graph: {
 -     nodes: Node[]
 -     edges: Edge[]
 -     viewport: Viewport
 -   }
 -   export_data: string
 - }
 - 
 - export type CreateFormData = {
 -   name: string
 -   appIcon: AppIconSelection
 -   description: string
 -   permission: DatasetPermission
 -   selectedMemberIDs: string[]
 - }
 - 
 - export type UpdateTemplateInfoRequest = {
 -   template_id: string
 -   name: string
 -   icon_info: IconInfo
 -   description: string
 - }
 - 
 - export type UpdateTemplateInfoResponse = {
 -   pipeline_id: string
 -   name: string
 -   icon_info: IconInfo
 -   description: string
 -   position: number
 - }
 - 
 - export type DeleteTemplateResponse = {
 -   code: number
 - }
 - 
 - export type ExportTemplateDSLResponse = {
 -   data: string
 - }
 - 
 - export type ImportPipelineDSLRequest = {
 -   mode: DSLImportMode
 -   yaml_content?: string
 -   yaml_url?: string
 -   pipeline_id?: string
 - }
 - 
 - export type ImportPipelineDSLResponse = {
 -   id: string
 -   status: DSLImportStatus
 -   pipeline_id: string
 -   dataset_id: string
 -   current_dsl_version: string
 -   imported_dsl_version: string
 - }
 - 
 - export type ImportPipelineDSLConfirmResponse = {
 -   status: DSLImportStatus
 -   pipeline_id: string
 -   dataset_id: string
 -   current_dsl_version: string
 -   imported_dsl_version: string
 -   error: string
 - }
 - 
 - export type PipelineCheckDependenciesResponse = {
 -   leaked_dependencies: Dependency[]
 - }
 - 
 - export enum PipelineInputVarType {
 -   textInput = 'text-input',
 -   paragraph = 'paragraph',
 -   select = 'select',
 -   number = 'number',
 -   singleFile = 'file',
 -   multiFiles = 'file-list',
 -   checkbox = 'checkbox',
 - }
 - 
 - export type RAGPipelineVariable = {
 -   belong_to_node_id: string // indicates belong to which node or 'shared'
 -   type: PipelineInputVarType
 -   label: string
 -   variable: string
 -   max_length?: number
 -   default_value?: string
 -   placeholder?: string
 -   unit?: string
 -   required: boolean
 -   tooltips?: string
 -   options?: string[]
 -   allowed_file_upload_methods?: TransferMethod[]
 -   allowed_file_types?: SupportUploadFileTypes[]
 -   allowed_file_extensions?: string[]
 - }
 - 
 - export type InputVar = Omit<RAGPipelineVariable, 'belong_to_node_id'>
 - export type RAGPipelineVariables = RAGPipelineVariable[]
 - 
 - export type PipelineProcessingParamsRequest = {
 -   pipeline_id: string
 -   node_id: string
 - }
 - 
 - export type PipelineProcessingParamsResponse = {
 -   variables: RAGPipelineVariables
 - }
 - 
 - export type PipelinePreProcessingParamsRequest = {
 -   pipeline_id: string
 -   node_id: string
 - }
 - 
 - export type PipelinePreProcessingParamsResponse = {
 -   variables: RAGPipelineVariables
 - }
 - 
 - export type PipelineDatasourceNodeRunRequest = {
 -   pipeline_id: string
 -   node_id: string
 -   inputs: Record<string, any>
 - }
 - 
 - export type PipelineDatasourceNodeRunResponse = Record<string, any>
 - 
 - export type PublishedPipelineInfoResponse = {
 -   id: string
 -   graph: {
 -     nodes: Node[]
 -     edges: Edge[]
 -     viewport: Viewport
 -   }
 -   created_at: number
 -   created_by: {
 -     id: string
 -     name: string
 -     email: string
 -   }
 -   hash: string
 -   updated_at: number
 -   updated_by: {
 -     id: string
 -     name: string
 -     email: string
 -   },
 -   environment_variables?: EnvironmentVariable[]
 -   rag_pipeline_variables?: RAGPipelineVariables
 -   version: string
 -   marked_name: string
 -   marked_comment: string
 - }
 - 
 - export type PublishedPipelineRunRequest = {
 -   pipeline_id: string
 -   inputs: Record<string, any>
 -   start_node_id: string
 -   datasource_type: DatasourceType
 -   datasource_info_list: Array<Record<string, any>>
 -   is_preview: boolean
 - }
 - 
 - export type PublishedPipelineRunPreviewResponse = {
 -   task_iod: string
 -   workflow_run_id: string
 -   data: {
 -     id: string
 -     status: string
 -     created_at: number
 -     elapsed_time: number
 -     error: string
 -     finished_at: number
 -     outputs: FileIndexingEstimateResponse
 -     total_steps: number
 -     total_tokens: number
 -     workflow_id: string
 -   }
 - }
 - 
 - export type PublishedPipelineRunResponse = {
 -   batch: string
 -   dataset: {
 -     chunk_structure: ChunkingMode
 -     description: string
 -     id: string
 -     name: string
 -   }
 -   documents: InitialDocumentDetail[]
 - }
 - 
 - export type InitialDocumentDetail = {
 -   data_source_info: Record<string, any>
 -   data_source_type: DatasourceType
 -   enable: boolean
 -   error: string
 -   id: string
 -   indexing_status: DocumentIndexingStatus
 -   name: string
 -   position: number
 - }
 
 
  |