This commit is contained in:
zxhlyh 2025-05-29 11:30:42 +08:00
parent 71ce505631
commit 6ff6525d1d
2 changed files with 6 additions and 4 deletions

View File

@ -9,7 +9,7 @@ import VectorSpaceFull from '@/app/components/billing/vector-space-full'
import WebsiteCrawl from './data-source/website-crawl'
import Actions from './data-source/actions'
import DocumentProcessing from './document-processing'
import { usePipelineRun } from '../../../hooks'
import { useWorkflowRun } from '@/app/components/workflow/hooks'
import type { Datasource } from './types'
import { DatasourceType } from '@/models/pipeline'
import { TransferMethod } from '@/types/app'
@ -44,7 +44,7 @@ const TestRunPanel = () => {
setWebsitePages,
setWebsiteCrawlJobId,
} = useWebsiteCrawl()
const { handleRun } = usePipelineRun()
const { handleRun } = useWorkflowRun()
const isVectorSpaceFull = plan.usage.vectorSpace >= plan.total.vectorSpace
const isShowVectorSpaceFull = allFileLoaded && isVectorSpaceFull && enableBilling

View File

@ -3,6 +3,7 @@ import {
useCallback,
useMemo,
} from 'react'
import { useTranslation } from 'react-i18next'
import type { HeaderProps } from '@/app/components/workflow/header'
import Header from '@/app/components/workflow/header'
import { fetchWorkflowRunHistory } from '@/service/workflow'
@ -14,6 +15,7 @@ import InputFieldButton from './input-field-button'
import Publisher from './publisher'
const RagPipelineHeader = () => {
const { t } = useTranslation()
const workflowStore = useWorkflowStore()
const pipelineId = useStore(s => s.pipelineId)
const showDebugAndPreviewPanel = useStore(s => s.showDebugAndPreviewPanel)
@ -39,7 +41,7 @@ const RagPipelineHeader = () => {
},
runAndHistoryProps: {
showRunButton: true,
runButtonText: 'Test Run',
runButtonText: t('workflow.singleRun.testRun'),
viewHistoryProps,
isRunning: showDebugAndPreviewPanel,
onStopRun: handleStopRun,
@ -49,7 +51,7 @@ const RagPipelineHeader = () => {
viewHistoryProps,
},
}
}, [viewHistoryProps, showDebugAndPreviewPanel, handleStopRun])
}, [viewHistoryProps, showDebugAndPreviewPanel, handleStopRun, t])
return (
<Header {...headerProps} />