UNPKG

@n8n/n8n-nodes-langchain

Version:

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

18 lines (15 loc) 576 B
/** * OpenAI - Audio Resource * Re-exports all operation types for this resource. */ import type { LcOpenAiV21AudioGenerateNode } from './operation_generate'; import type { LcOpenAiV21AudioTranscribeNode } from './operation_transcribe'; import type { LcOpenAiV21AudioTranslateNode } from './operation_translate'; export * from './operation_generate'; export * from './operation_transcribe'; export * from './operation_translate'; export type LcOpenAiV21AudioNode = | LcOpenAiV21AudioGenerateNode | LcOpenAiV21AudioTranscribeNode | LcOpenAiV21AudioTranslateNode ;