mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(editor): Add RAG starter template callouts experiment (#16282)
Co-authored-by: Charlie Kolb <charlie@n8n.io>
This commit is contained in:
@@ -33,6 +33,32 @@ export const TEST_PARAMETERS: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName:
|
||||
'Note: This is a notice with <a href="notice.n8n.io" target="_blank">notice link</a>',
|
||||
name: 'testNotice',
|
||||
type: 'notice',
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: { '@version': [{ _cnd: { gte: 1.1 } }] },
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName:
|
||||
'Tip: This is a callout with <a href="callout.n8n.io" target="_blank">callout link</a>',
|
||||
name: 'testCallout',
|
||||
type: 'callout',
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: { '@version': [{ _cnd: { gte: 1.1 } }] },
|
||||
},
|
||||
typeOptions: {
|
||||
calloutAction: {
|
||||
label: 'and action!',
|
||||
type: 'openRagStarterTemplate',
|
||||
},
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
export const FIXED_COLLECTION_PARAMETERS: INodeProperties[] = TEST_PARAMETERS.filter(
|
||||
|
||||
Reference in New Issue
Block a user