UNPKG

@n8n/n8n-nodes-langchain

Version:

![Banner image](https://user-images.githubusercontent.com/10284570/173569848-c624317f-42b1-45a6-ab09-f0ea3c247648.png)

33 lines (28 loc) 830 B
/** * OpenAI Node - Version 2.1 * Discriminator: resource=file, operation=deleteFile */ interface Credentials { openAiApi: CredentialReference; } /** Delete a file from the server */ export type LcOpenAiV21FileDeleteFileParams = { resource: 'file'; operation: 'deleteFile'; /** * File * @searchListMethod fileSearch * @default {"mode":"list","value":""} */ fileId?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string }; }; export interface LcOpenAiV21FileDeleteFileSubnodeConfig { tools?: ToolInstance[]; memory?: MemoryInstance; } export type LcOpenAiV21FileDeleteFileNode = { type: '@n8n/n8n-nodes-langchain.openAi'; version: 2.1; credentials?: Credentials; config: NodeConfig<LcOpenAiV21FileDeleteFileParams> & { subnodes?: LcOpenAiV21FileDeleteFileSubnodeConfig }; };