diff --git a/web/src/app/home/agents/components/ProcessorTypeDiagram.tsx b/web/src/app/home/agents/components/ProcessorTypeDiagram.tsx
index 6d9125423..bae285498 100644
--- a/web/src/app/home/agents/components/ProcessorTypeDiagram.tsx
+++ b/web/src/app/home/agents/components/ProcessorTypeDiagram.tsx
@@ -156,7 +156,8 @@ function AgentDiagram() {
function PipelineDiagram() {
const { t } = useTranslation();
const arrowId = `pipeline-arrow-${useId().replace(/:/g, '')}`;
- const stages = [
+ const steps = [
+ t('agents.diagramMessage'),
t('agents.diagramPreprocess'),
t('agents.diagramAI'),
t('agents.diagramPostprocess'),
@@ -175,8 +176,17 @@ function PipelineDiagram() {
+
+ {t('agents.pipelineDiagramFlow')}
+
-
-
-
-
- {t('agents.diagramMessage')}
-
-
-
- {stages.map((stage, index) => {
- const x = 198 + index * 146;
- const active = index === 1;
+ {steps.map((step, index) => {
+ const x = 40 + index * 142;
+ const active = index === 2;
return (
-
+
-
+ {!active && (
+
+ )}
- {index + 1}
-
-
- {stage}
+ {step}
);