UNPKG

n8n-nodes-gigachat

Version:

A user-friendly GigaChat AI (Sber) nodes for n8n

12 lines (11 loc) 425 B
import { INodeType, INodeTypeDescription } from 'n8n-workflow'; import { getLangchainGigaChatModels, supplyLangchainGigaChatInstance } from './utils'; export declare class LmGigaChat implements INodeType { description: INodeTypeDescription; supplyData: typeof supplyLangchainGigaChatInstance; methods: { loadOptions: { getGigaChatModels: typeof getLangchainGigaChatModels; }; }; }