feat: Decrease AI Builder wordiness (no-changelog) (#18920)

This commit is contained in:
Mutasem Aldmour
2025-09-01 11:36:12 +02:00
committed by GitHub
parent bf198f8263
commit a9d59ed84a
9 changed files with 350 additions and 82 deletions

View File

@@ -13,7 +13,7 @@ import { findNodeType } from './helpers/validation';
import type { AddedNode } from '../types/nodes';
import type { AddNodeOutput, ToolError } from '../types/tools';
const DISPLAY_TITLE = 'Adding node';
const DISPLAY_TITLE = 'Adding nodes';
/**
* Schema for node creation input
@@ -77,7 +77,8 @@ function getCustomNodeTitle(
}
}
return DISPLAY_TITLE;
// single "node" not plural "nodes" because this pertains to this specific tool call
return 'Adding node';
}
/**