/**
 * OpenAI Node - Version 2.1
 * Discriminator: resource=conversation, operation=get
 */


interface Credentials {
  openAiApi: CredentialReference;
}

/** Get a conversation */
export type LcOpenAiV21ConversationGetParams = {
  resource: 'conversation';
  operation: 'get';
/**
 * The ID of the conversation to retrieve
 */
    conversationId: string | Expression<string> | PlaceholderValue;
};

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

export type LcOpenAiV21ConversationGetNode = {
  type: '@n8n/n8n-nodes-langchain.openAi';
  version: 2.1;
  credentials?: Credentials;
  config: NodeConfig<LcOpenAiV21ConversationGetParams> & { subnodes?: LcOpenAiV21ConversationGetSubnodeConfig };
};