mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-03 20:33:00 +00:00 
			
		
		
		
	Merge branch 'feat/rag-pipeline' of https://github.com/langgenius/dify into feat/rag-pipeline
This commit is contained in:
		
						commit
						dd792210f6
					
				@ -6,7 +6,6 @@ import type { EnvironmentVariable } from '@/app/components/workflow/types'
 | 
				
			|||||||
import { DSL_EXPORT_CHECK } from '@/app/components/workflow/constants'
 | 
					import { DSL_EXPORT_CHECK } from '@/app/components/workflow/constants'
 | 
				
			||||||
import { useStore } from '@/app/components/workflow/store'
 | 
					import { useStore } from '@/app/components/workflow/store'
 | 
				
			||||||
import Features from '@/app/components/workflow/features'
 | 
					import Features from '@/app/components/workflow/features'
 | 
				
			||||||
import PluginDependency from '@/app/components/workflow/plugin-dependency'
 | 
					 | 
				
			||||||
import UpdateDSLModal from '@/app/components/workflow/update-dsl-modal'
 | 
					import UpdateDSLModal from '@/app/components/workflow/update-dsl-modal'
 | 
				
			||||||
import DSLExportConfirmModal from '@/app/components/workflow/dsl-export-confirm-modal'
 | 
					import DSLExportConfirmModal from '@/app/components/workflow/dsl-export-confirm-modal'
 | 
				
			||||||
import {
 | 
					import {
 | 
				
			||||||
@ -38,7 +37,6 @@ const WorkflowChildren = () => {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <>
 | 
					    <>
 | 
				
			||||||
      <PluginDependency />
 | 
					 | 
				
			||||||
      {
 | 
					      {
 | 
				
			||||||
        showFeaturesPanel && <Features />
 | 
					        showFeaturesPanel && <Features />
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
 | 
				
			|||||||
@ -80,6 +80,7 @@ import Confirm from '@/app/components/base/confirm'
 | 
				
			|||||||
import DatasetsDetailProvider from './datasets-detail-store/provider'
 | 
					import DatasetsDetailProvider from './datasets-detail-store/provider'
 | 
				
			||||||
import { HooksStoreContextProvider } from './hooks-store'
 | 
					import { HooksStoreContextProvider } from './hooks-store'
 | 
				
			||||||
import type { Shape as HooksStoreShape } from './hooks-store'
 | 
					import type { Shape as HooksStoreShape } from './hooks-store'
 | 
				
			||||||
 | 
					import PluginDependency from './plugin-dependency'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const nodeTypes = {
 | 
					const nodeTypes = {
 | 
				
			||||||
  [CUSTOM_NODE]: CustomNode,
 | 
					  [CUSTOM_NODE]: CustomNode,
 | 
				
			||||||
@ -282,6 +283,7 @@ export const Workflow: FC<WorkflowProps> = memo(({
 | 
				
			|||||||
        )
 | 
					        )
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
      <LimitTips />
 | 
					      <LimitTips />
 | 
				
			||||||
 | 
					      <PluginDependency />
 | 
				
			||||||
      {children}
 | 
					      {children}
 | 
				
			||||||
      <ReactFlow
 | 
					      <ReactFlow
 | 
				
			||||||
        nodeTypes={nodeTypes}
 | 
					        nodeTypes={nodeTypes}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user