feat(editor): Add RAG starter template callouts experiment (#16282)

Co-authored-by: Charlie Kolb <charlie@n8n.io>
This commit is contained in:
Jaakko Husso
2025-06-13 17:45:30 +03:00
committed by GitHub
parent 30148df7f3
commit d0a313aa1c
27 changed files with 1032 additions and 24 deletions

View File

@@ -82,15 +82,26 @@ const getIconSize = computed<IconSize>(() => {
padding: var(--spacing-xs);
border: var(--border-width-base) var(--border-style-base);
align-items: center;
line-height: var(--font-line-height-loose);
line-height: var(--font-line-height-xloose);
border-color: var(--color-callout-info-border);
background-color: var(--color-callout-info-background);
color: var(--color-callout-info-font);
&.slim {
line-height: var(--font-line-height-loose);
line-height: var(--font-line-height-xloose);
padding: var(--spacing-3xs) var(--spacing-2xs);
}
a {
color: var(--color-secondary-link);
font-weight: var(--font-weight-medium);
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: none;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
}
}
.round {
@@ -151,7 +162,7 @@ const getIconSize = computed<IconSize>(() => {
.icon {
line-height: 1;
margin-right: var(--spacing-2xs);
margin-right: var(--spacing-xs);
}
.secondary {

View File

@@ -1253,6 +1253,8 @@
"nodeCreator.noResults.wantUsToMakeItFaster": "Want us to make it faster?",
"nodeCreator.noResults.weDidntMakeThatYet": "We didn't make that... yet",
"nodeCreator.noResults.webhook": "Webhook",
"nodeCreator.ragStarterTemplate.openTemplateItem.title": "RAG starter template",
"nodeCreator.ragStarterTemplate.openTemplateItem.description": "Get a feel for vector stores in n8n",
"nodeCreator.searchBar.searchNodes": "Search nodes...",
"nodeCreator.subcategoryDescriptions.appTriggerNodes": "Runs the flow when something happens in an app like Telegram, Notion or Airtable",
"nodeCreator.subcategoryDescriptions.appRegularNodes": "Do something in an app or service like Google Sheets, Telegram or Notion",
@@ -1620,6 +1622,9 @@
"parameterInputList.parameterOptions": "Parameter Options",
"parameterInputList.loadingFields": "Loading fields...",
"parameterInputList.loadingError": "Error loading fields. Refresh you page and try again.",
"parameterInputList.callout.dismiss.confirm.text": "Do you want to permanently hide this?",
"parameterInputList.callout.dismiss.confirm.confirmButtonText": "Confirm",
"parameterInputList.callout.dismiss.confirm.cancelButtonText": "Cancel",
"parameterOverride.overridePanelText": "Defined automatically by the <b>model</b>",
"parameterOverride.applyOverrideButtonTooltip": "Let the model define this parameter",
"parameterOverride.descriptionTooltip": "Explain to the LLM how it should generate this value, a good, specific description would allow LLMs to produce expected results much more often",