/**
 * OpenAI Node - Version 1
 * Discriminator: resource=text, operation=classify
 */


interface Credentials {
  openAiApi: CredentialReference;
}

/** Check whether content complies with usage policies */
export type LcOpenAiV1TextClassifyParams = {
  resource: 'text';
  operation: 'classify';
/**
 * The input text to classify if it is violates the moderation policy
 */
    input?: string | Expression<string> | PlaceholderValue;
/**
 * Whether to return a simplified version of the response instead of the raw data
 * @default false
 */
    simplify?: boolean | Expression<boolean>;
/**
 * Options
 * @default {}
 */
    options?: {
    /** Whether to use the stable version of the model instead of the latest version, accuracy may be slightly lower
     * @default false
     */
    useStableModel?: boolean | Expression<boolean>;
  };
};

export interface LcOpenAiV1TextClassifySubnodeConfig {
  tools?: ToolInstance[];
  memory?: MemoryInstance;
}

export type LcOpenAiV1TextClassifyNode = {
  type: '@n8n/n8n-nodes-langchain.openAi';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<LcOpenAiV1TextClassifyParams> & { subnodes?: LcOpenAiV1TextClassifySubnodeConfig };
};