UNPKG

@n8n/n8n-nodes-langchain

Version:

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

15 lines (12 loc) 460 B
/** * Google Gemini - Audio Resource * Re-exports all operation types for this resource. */ import type { LcGoogleGeminiV11AudioAnalyzeNode } from './operation_analyze'; import type { LcGoogleGeminiV11AudioTranscribeNode } from './operation_transcribe'; export * from './operation_analyze'; export * from './operation_transcribe'; export type LcGoogleGeminiV11AudioNode = | LcGoogleGeminiV11AudioAnalyzeNode | LcGoogleGeminiV11AudioTranscribeNode ;