UNPKG

n8n-nodes-wxai

Version:

A user-friendly WXAI node for n8n, designed to enhance your workflow with Gemini 2.0 Flash model. Supports chat completions with configurable parameters.

11 lines (10 loc) 390 B
import type { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties, Icon } from 'n8n-workflow'; export declare class WxaiApi implements ICredentialType { name: string; displayName: string; icon: Icon; documentationUrl: string; properties: INodeProperties[]; authenticate: IAuthenticateGeneric; test: ICredentialTestRequest; }