n8n-nodes-nim
Version:
NVIDIA NIM node for n8n
14 lines (13 loc) • 475 B
TypeScript
import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
export declare class NIMApi implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
icon: {
readonly light: "file:nvidia-nim-dark.svg";
readonly dark: "file:nvidia-nim-light.svg";
};
properties: INodeProperties[];
authenticate: IAuthenticateGeneric;
test: ICredentialTestRequest;
}