UNPKG

@n8n/n8n-nodes-langchain

Version:
36 lines (31 loc) 953 B
/** * OpenAI Node - Version 2.1 * Discriminator: resource=text, operation=classify */ interface Credentials { openAiApi: CredentialReference; } /** Check whether content complies with usage policies */ export type LcOpenAiV21TextClassifyParams = { resource: 'text'; operation: 'classify'; /** * The input text to classify if it is violates the moderation policy */ input?: string | Expression<string>; /** * Whether to return a simplified version of the response instead of the raw data * @default false */ simplify?: boolean | Expression<boolean>; }; export interface LcOpenAiV21TextClassifySubnodeConfig { tools?: ToolInstance[]; memory?: MemoryInstance; } export type LcOpenAiV21TextClassifyNode = { type: '@n8n/n8n-nodes-langchain.openAi'; version: 2.1; isTrigger: true; config: NodeConfig<LcOpenAiV21TextClassifyParams> & { credentials?: Credentials } & { subnodes?: LcOpenAiV21TextClassifySubnodeConfig }; };