UNPKG

n8n-nodes-gigachat

Version:

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

13 lines (12 loc) 425 B
import { INodeType, INodeTypeDescription } from 'n8n-workflow'; import { getGigaChatModels } from '../../shared/GigaChatModels'; import { apiGigaChatExecute } from './utils'; export declare class ApiGigaChat implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getGigaChatModels: typeof getGigaChatModels; }; }; execute: typeof apiGigaChatExecute; }