n8n-nodes-gigachat
Version:
A user-friendly GigaChat AI (Sber) nodes for n8n
11 lines (10 loc) • 472 B
TypeScript
import { ILoadOptionsFunctions, INodePropertyOptions, INodeType, INodeTypeDescription, ISupplyDataFunctions, SupplyData } from 'n8n-workflow';
export declare class LmGigaChat implements INodeType {
description: INodeTypeDescription;
supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise<SupplyData>;
methods: {
loadOptions: {
getGigaChatModels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
}