diff --git a/packages/@n8n/nodes-langchain/nodes/agents/Agent/Agent.node.ts b/packages/@n8n/nodes-langchain/nodes/agents/Agent/Agent.node.ts
index b7bd13e87..b20b4838c 100644
--- a/packages/@n8n/nodes-langchain/nodes/agents/Agent/Agent.node.ts
+++ b/packages/@n8n/nodes-langchain/nodes/agents/Agent/Agent.node.ts
@@ -9,7 +9,6 @@ import type {
INodeTypeDescription,
INodeProperties,
} from 'n8n-workflow';
-import { getTemplateNoticeField } from '../../../utils/sharedFields';
import { promptTypeOptions, textInput } from '../../../utils/descriptions';
import { conversationalAgentProperties } from './agents/ConversationalAgent/description';
import { conversationalAgentExecute } from './agents/ConversationalAgent/execute';
@@ -305,10 +304,14 @@ export class Agent implements INodeType {
],
properties: [
{
- ...getTemplateNoticeField(1954),
+ displayName:
+ 'Tip: Get a feel for agents with our quick tutorial or see an example of how this node works',
+ name: 'notice_tip',
+ type: 'notice',
+ default: '',
displayOptions: {
show: {
- agent: ['conversationalAgent'],
+ agent: ['conversationalAgent', 'toolsAgent'],
},
},
},