feat(editor): Add pre-built agents experiment (#18124)

This commit is contained in:
Jaakko Husso
2025-08-09 10:28:14 +03:00
committed by GitHub
parent a3b625fc18
commit 5a69d2a2f3
44 changed files with 2635 additions and 653 deletions

View File

@@ -2,7 +2,24 @@ import type { INodeProperties } from 'n8n-workflow';
import { optimizeResponseProperties } from '../shared/optimizeResponse';
const preBuiltAgentsCallout: INodeProperties = {
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
displayName: 'Try the HTTP request tool with our pre-built',
name: 'preBuiltAgentsCalloutHttpRequest',
type: 'callout',
typeOptions: {
calloutAction: {
label: 'Joke agent',
icon: 'bot',
type: 'openSampleWorkflowTemplate',
templateId: 'joke_agent_with_http_tool',
},
},
default: '',
};
export const mainProperties: INodeProperties[] = [
preBuiltAgentsCallout,
{
displayName: '',
name: 'curlImport',