dify/web/app/(commonLayout)/datasets/(datasetDetailLayout)/[datasetId]/pipeline/page.tsx

12 lines
229 B
TypeScript

'use client'
import RagPipeline from '@/app/components/rag-pipeline'
const PipelinePage = () => {
return (
<div className="h-full w-full overflow-x-auto">
<RagPipeline />
</div>
)
}
export default PipelinePage