From 738a7d5c24e4a361ae92ec7b9aca7759f1c20f8a Mon Sep 17 00:00:00 2001 From: chanx <1243304602@qq.com> Date: Tue, 14 Oct 2025 21:06:49 +0800 Subject: [PATCH] Fix: Adding Ingestion Pipeline Classification to Agents Template #9869 (#10556) ### 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) --- web/src/locales/en.ts | 1 + web/src/pages/agents/template-sidebar.tsx | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/web/src/locales/en.ts b/web/src/locales/en.ts index 92ccfec5b..e1beb4657 100644 --- a/web/src/locales/en.ts +++ b/web/src/locales/en.ts @@ -955,6 +955,7 @@ This auto-tagging feature enhances retrieval by adding another layer of domain-s marketing: 'Marketing', consumerApp: 'Consumer App', other: 'Other', + pipeline: 'Ingestion pipeline', agents: 'Agents', days: 'Days', beginInput: 'Begin Input', diff --git a/web/src/pages/agents/template-sidebar.tsx b/web/src/pages/agents/template-sidebar.tsx index 6dceaa3b5..2e1dafed6 100644 --- a/web/src/pages/agents/template-sidebar.tsx +++ b/web/src/pages/agents/template-sidebar.tsx @@ -8,6 +8,7 @@ import { Component, MessageCircleCode, PencilRuler, + Route, Sparkle, } from 'lucide-react'; export enum MenuItemKey { @@ -16,6 +17,7 @@ export enum MenuItemKey { CustomerSupport = 'Customer Support', Marketing = 'Marketing', ConsumerApp = 'Consumer App', + Pipeline = 'Pipeline', Other = 'Other', } const menuItems = [ @@ -52,6 +54,11 @@ const menuItems = [ ), key: MenuItemKey.ConsumerApp, }, + { + icon: Route, + label: t('flow.' + lowerFirst(MenuItemKey.Pipeline.replace(' ', ''))), + key: MenuItemKey.Pipeline, + }, { icon: PencilRuler, label: t('flow.' + lowerFirst(MenuItemKey.Other)),