UNPKG

n8n-nodes-gigachat

Version:

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

13 lines (12 loc) 456 B
import { GigaChat } from 'langchain-gigachat'; import { GigaChatClientConfig } from 'gigachat'; declare class GigaChatLcClientInstance extends GigaChat { authorizationKey: string | null; model: string; protected _settings: any; protected _client: any; constructor(config: GigaChatClientConfig); updateConfig(config: GigaChatClientConfig): Promise<void>; } export declare const GigaChatLcClient: GigaChatLcClientInstance; export {};