mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Fix: Adding Ingestion Pipeline Classification to Agents Template #9869 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -955,6 +955,7 @@ This auto-tagging feature enhances retrieval by adding another layer of domain-s
|
|||||||
marketing: 'Marketing',
|
marketing: 'Marketing',
|
||||||
consumerApp: 'Consumer App',
|
consumerApp: 'Consumer App',
|
||||||
other: 'Other',
|
other: 'Other',
|
||||||
|
pipeline: 'Ingestion pipeline',
|
||||||
agents: 'Agents',
|
agents: 'Agents',
|
||||||
days: 'Days',
|
days: 'Days',
|
||||||
beginInput: 'Begin Input',
|
beginInput: 'Begin Input',
|
||||||
|
|||||||
@ -8,6 +8,7 @@ import {
|
|||||||
Component,
|
Component,
|
||||||
MessageCircleCode,
|
MessageCircleCode,
|
||||||
PencilRuler,
|
PencilRuler,
|
||||||
|
Route,
|
||||||
Sparkle,
|
Sparkle,
|
||||||
} from 'lucide-react';
|
} from 'lucide-react';
|
||||||
export enum MenuItemKey {
|
export enum MenuItemKey {
|
||||||
@ -16,6 +17,7 @@ export enum MenuItemKey {
|
|||||||
CustomerSupport = 'Customer Support',
|
CustomerSupport = 'Customer Support',
|
||||||
Marketing = 'Marketing',
|
Marketing = 'Marketing',
|
||||||
ConsumerApp = 'Consumer App',
|
ConsumerApp = 'Consumer App',
|
||||||
|
Pipeline = 'Pipeline',
|
||||||
Other = 'Other',
|
Other = 'Other',
|
||||||
}
|
}
|
||||||
const menuItems = [
|
const menuItems = [
|
||||||
@ -52,6 +54,11 @@ const menuItems = [
|
|||||||
),
|
),
|
||||||
key: MenuItemKey.ConsumerApp,
|
key: MenuItemKey.ConsumerApp,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
icon: Route,
|
||||||
|
label: t('flow.' + lowerFirst(MenuItemKey.Pipeline.replace(' ', ''))),
|
||||||
|
key: MenuItemKey.Pipeline,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: PencilRuler,
|
icon: PencilRuler,
|
||||||
label: t('flow.' + lowerFirst(MenuItemKey.Other)),
|
label: t('flow.' + lowerFirst(MenuItemKey.Other)),
|
||||||
|
|||||||
Reference in New Issue
Block a user