12 lines
229 B
TypeScript
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
|