Feature/add nvdia nim (#3749)

* add nvdia nim

* add base path
This commit is contained in:
Henry Heng
2024-12-31 18:16:58 +00:00
committed by GitHub
parent 4e434fd725
commit 5ba0ded4cc
3 changed files with 198 additions and 0 deletions
@@ -0,0 +1,24 @@
import { INodeParams, INodeCredential } from '../src/Interface'
class NvdiaNIMApi implements INodeCredential {
label: string
name: string
version: number
description: string
inputs: INodeParams[]
constructor() {
this.label = 'Nvdia NIM API Key'
this.name = 'nvdiaNIMApi'
this.version = 1.0
this.inputs = [
{
label: 'Nvdia NIM API Key',
name: 'nvdiaNIMApiKey',
type: 'password'
}
]
}
}
module.exports = { credClass: NvdiaNIMApi }