mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
feat(core): Rename instance AI to AI Assistant in the UI texts (no-changelog) (#28732)
This commit is contained in:
parent
107c48f65c
commit
6cfa0ed559
6 changed files with 12 additions and 13 deletions
|
|
@ -81,6 +81,7 @@ The monorepo is organized into these key packages:
|
|||
- **`packages/@n8n/i18n`**: Internationalization for UI text
|
||||
- **`packages/nodes-base`**: Built-in nodes for integrations
|
||||
- **`packages/@n8n/nodes-langchain`**: AI/LangChain nodes
|
||||
- **`packages/@n8n/instance-ai`**: "AI Assistant" in the UI, "Instance AI" in code — AI assistant backend. See its `CLAUDE.md` for architecture docs.
|
||||
- **`@n8n/design-system`**: Vue component library for UI consistency
|
||||
- **`@n8n/config`**: Centralized configuration management
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@n8n/computer-use",
|
||||
"version": "0.3.0",
|
||||
"description": "Local AI gateway for n8n Instance AI — filesystem, shell, screenshots, mouse/keyboard, and browser automation",
|
||||
"description": "Local AI gateway for n8n AI Assistant — filesystem, shell, screenshots, mouse/keyboard, and browser automation",
|
||||
"bin": {
|
||||
"n8n-computer-use": "dist/cli.js"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ function shouldShowHelp(): boolean {
|
|||
|
||||
function printUsage(): void {
|
||||
console.log(`
|
||||
n8n-computer-use — Local AI gateway for n8n Instance AI
|
||||
n8n-computer-use — Local AI gateway for n8n AI Assistant
|
||||
|
||||
Usage:
|
||||
npx @n8n/computer-use <url> Start daemon (n8n connects to you)
|
||||
|
|
|
|||
|
|
@ -4223,8 +4223,6 @@
|
|||
"settings.n8nConnect.wallet.quota": "budget",
|
||||
"settings.n8nConnect.wallet.topUp": "Top up balance",
|
||||
"settings.n8nConnect.usage.refresh.tooltip": "Refresh usage records",
|
||||
"settings.instanceAi": "Instance AI",
|
||||
"settings.instanceAi.description": "Configure the Instance AI agent, model, memory, and permissions.",
|
||||
"settings.n8nAgent": "AI Assistant",
|
||||
"settings.n8nAgent.description": "Enable or disable AI Assistant for this instance and control permissions",
|
||||
"settings.n8nAgent.enable.label": "Enable AI Assistant",
|
||||
|
|
@ -5069,8 +5067,8 @@
|
|||
"commandBar.chat.deleteSession": "Delete \"{title}\"",
|
||||
"commandBar.chat.open.searchPlaceholder": "Search by f title...",
|
||||
"commandBar.chat.stop": "Stop message generation",
|
||||
"commandBar.sections.instanceAi": "Instance AI",
|
||||
"commandBar.instanceAi.open": "Open Instance AI",
|
||||
"commandBar.sections.instanceAi": "AI Assistant",
|
||||
"commandBar.instanceAi.open": "Open AI Assistant",
|
||||
"commandBar.instanceAi.newThread": "New conversation",
|
||||
"commandBar.instanceAi.openThread": "Open conversation",
|
||||
"commandBar.instanceAi.openThread.searchPlaceholder": "Search by title...",
|
||||
|
|
@ -5089,7 +5087,7 @@
|
|||
"focusedNodes.mentionTooltip": "Mention a node",
|
||||
"focusedNodes.allNodes": "All nodes",
|
||||
"focusedNodes.unconfirmedTooltip": "Add as context for the assistant",
|
||||
"instanceAi.view.title": "Instance AI",
|
||||
"instanceAi.view.title": "AI Assistant",
|
||||
"instanceAi.view.subtitle": "Chat with your n8n instance",
|
||||
"instanceAi.input.placeholder": "Ask anything...",
|
||||
"instanceAi.input.suspendedPlaceholder": "Complete or skip the setup above to continue",
|
||||
|
|
@ -5141,11 +5139,11 @@
|
|||
"instanceAi.gatewayConfirmation.allowForSession": "Allow for session",
|
||||
"instanceAi.gatewayConfirmation.allowOnce": "Allow once",
|
||||
"instanceAi.gatewayConfirmation.denyOnce": "Deny once",
|
||||
"instanceAi.gatewayConfirmation.prompt": "n8n AI wants to access '{resources}' on Computer Use",
|
||||
"instanceAi.gatewayConfirmation.prompt": "AI Assistant wants to access '{resources}' on Computer Use",
|
||||
"instanceAi.askUser.placeholder": "Type your answer...",
|
||||
"instanceAi.askUser.submit": "Submit",
|
||||
"instanceAi.askUser.skip": "Skip",
|
||||
"instanceAi.domainAccess.prompt": "n8n AI wants to access {domain}",
|
||||
"instanceAi.domainAccess.prompt": "AI Assistant wants to access {domain}",
|
||||
"instanceAi.domainAccess.allowOnce": "Allow once",
|
||||
"instanceAi.domainAccess.allowDomain": "Always allow {domain}",
|
||||
"instanceAi.domainAccess.allowAll": "Allow all domains",
|
||||
|
|
@ -5496,7 +5494,7 @@
|
|||
"instanceAi.filesystem.connectWaiting": "Connecting...",
|
||||
"instanceAi.filesystem.copied": "Copied!",
|
||||
"instanceAi.filesystem.setupCommand": "Run in your terminal to connect:",
|
||||
"projects.menu.instanceAi": "Instance AI",
|
||||
"projects.menu.instanceAi": "AI Assistant",
|
||||
"chatInputBase.button.attach": "Attach files",
|
||||
"instanceAi.filesystem.access.read": "Read only",
|
||||
"instanceAi.filesystem.access.readWrite": "Read & Write",
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ function goToSettings() {
|
|||
void router.push({ name: INSTANCE_AI_SETTINGS_VIEW });
|
||||
}
|
||||
|
||||
documentTitle.set('n8n Agent');
|
||||
documentTitle.set(i18n.baseText('instanceAi.view.title'));
|
||||
|
||||
// --- Execution tracking via push events ---
|
||||
const executionTracking = useExecutionPushEvents();
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@ const InstanceAiOptinModal = async () => await import('./components/InstanceAiOp
|
|||
|
||||
export const InstanceAiModule: FrontendModuleDescription = {
|
||||
id: 'instance-ai',
|
||||
name: 'Instance AI',
|
||||
description: 'Chat with the n8n Instance AI agent.',
|
||||
name: 'AI Assistant',
|
||||
description: 'Chat with your n8n instance.',
|
||||
icon: 'sparkles',
|
||||
routes: [
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue