mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-09 04:44:49 +08:00
Fix graph task type (#14475)
### What problem does this PR solve? Fix graph task type ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@@ -4,7 +4,7 @@ export enum LogTabs {
|
||||
}
|
||||
|
||||
export enum ProcessingType {
|
||||
knowledgeGraph = 'GraphRAG',
|
||||
knowledgeGraph = 'Graph',
|
||||
raptor = 'RAPTOR',
|
||||
}
|
||||
|
||||
|
||||
@@ -81,9 +81,9 @@ export default {
|
||||
fetchPipelineDatasetLogs: (datasetId: string) =>
|
||||
`${restAPIv1}/datasets/${datasetId}/ingestions`,
|
||||
runIndex: (datasetId: string, indexType: string) =>
|
||||
`${restAPIv1}/datasets/${datasetId}/index?type=${indexType}`,
|
||||
`${restAPIv1}/datasets/${datasetId}/index?type=${indexType.toLowerCase()}`,
|
||||
traceIndex: (datasetId: string, indexType: string) =>
|
||||
`${restAPIv1}/datasets/${datasetId}/index?type=${indexType}`,
|
||||
`${restAPIv1}/datasets/${datasetId}/index?type=${indexType.toLowerCase()}`,
|
||||
unbindPipelineTask: (datasetId: string, indexType: string) =>
|
||||
`${restAPIv1}/datasets/${datasetId}/${indexType.toLowerCase()}`,
|
||||
pipelineRerun: `${webAPI}/canvas/rerun`,
|
||||
|
||||
Reference in New Issue
Block a user