n8n-nodes-gigachat
Version:
A user-friendly GigaChat AI (Sber) nodes for n8n
13 lines (12 loc) • 437 B
TypeScript
import { INodeType, INodeTypeDescription } from 'n8n-workflow';
import { chatLoadGigaChatModels } from './utils';
import { gigaChatWithModel } from '../../shared/methods/ChatWithModel';
export declare class GigaChat implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getGigaChatModels: typeof chatLoadGigaChatModels;
};
};
execute: typeof gigaChatWithModel;
}