Feature/nim container (#3966)

* add nim container setup

* check if image or container exist before pulling

* update NIM dialog

* update chat nvidia api key

* update nim container version

* update nim container version
This commit is contained in:
Henry Heng
2025-02-27 09:14:01 +00:00
committed by GitHub
parent 7d8541a44b
commit 1678815540
10 changed files with 606 additions and 1056 deletions
@@ -1,6 +1,6 @@
import { INodeParams, INodeCredential } from '../src/Interface'
class NvdiaNIMApi implements INodeCredential {
class NvidiaNIMApi implements INodeCredential {
label: string
name: string
version: number
@@ -9,16 +9,16 @@ class NvdiaNIMApi implements INodeCredential {
constructor() {
this.label = 'Nvdia NIM API Key'
this.name = 'nvdiaNIMApi'
this.name = 'nvidiaNIMApi'
this.version = 1.0
this.inputs = [
{
label: 'Nvdia NIM API Key',
name: 'nvdiaNIMApiKey',
label: 'Nvidia NIM API Key',
name: 'nvidiaNIMApiKey',
type: 'password'
}
]
}
}
module.exports = { credClass: NvdiaNIMApi }
module.exports = { credClass: NvidiaNIMApi }