From aa6aa2e46186311c7eac64c6a4dee33151bbe988 Mon Sep 17 00:00:00 2001 From: Asharib Ali <102221198+AsharibAli@users.noreply.github.com> Date: Sat, 30 Mar 2024 20:54:22 +0500 Subject: [PATCH] bugfix: depreciating chatgpt plugin (#2070) --- packages/components/nodes/tools/AIPlugin/AIPlugin.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/components/nodes/tools/AIPlugin/AIPlugin.ts b/packages/components/nodes/tools/AIPlugin/AIPlugin.ts index ac1427f7..f9afe0fe 100644 --- a/packages/components/nodes/tools/AIPlugin/AIPlugin.ts +++ b/packages/components/nodes/tools/AIPlugin/AIPlugin.ts @@ -12,6 +12,7 @@ class AIPlugin implements INode { category: string baseClasses: string[] inputs?: INodeParams[] + badge: string constructor() { this.label = 'AI Plugin' @@ -22,6 +23,7 @@ class AIPlugin implements INode { this.category = 'Tools' this.description = 'Execute actions using ChatGPT Plugin Url' this.baseClasses = [this.type, ...getBaseClasses(AIPluginTool)] + this.badge = 'DEPRECATING' this.inputs = [ { label: 'Plugin Url',