UNPKG

n8n-nodes-gigachat

Version:

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

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