From 9b54aa8879909c7f81e1ebac515b5e912feba0f8 Mon Sep 17 00:00:00 2001 From: Henry Heng Date: Wed, 30 Jul 2025 17:50:55 +0100 Subject: [PATCH] Bugfix/nvidia node name (#4986) fix nvidia node name --- .../components/nodes/chatmodels/ChatNvdiaNIM/ChatNvdiaNIM.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/components/nodes/chatmodels/ChatNvdiaNIM/ChatNvdiaNIM.ts b/packages/components/nodes/chatmodels/ChatNvdiaNIM/ChatNvdiaNIM.ts index 548e13b6b..59f57c485 100644 --- a/packages/components/nodes/chatmodels/ChatNvdiaNIM/ChatNvdiaNIM.ts +++ b/packages/components/nodes/chatmodels/ChatNvdiaNIM/ChatNvdiaNIM.ts @@ -17,9 +17,9 @@ class ChatNvdiaNIM_ChatModels implements INode { constructor() { this.label = 'Chat NVIDIA NIM' - this.name = 'Chat NVIDIA NIM' + this.name = 'chatNvidiaNIM' this.version = 1.1 - this.type = 'Chat NVIDIA NIM' + this.type = 'ChatNvidiaNIM' this.icon = 'nvdia.svg' this.category = 'Chat Models' this.description = 'Wrapper around NVIDIA NIM Inference API'