UNPKG

n8n-nodes-salutespeech

Version:

User-friendly SaluteSpeech (Sber) community node

13 lines (12 loc) 410 B
import { AxiosInstance } from 'axios'; interface SpeechRecognizeArgs { file: File; language?: 'ru-RU' | 'en-US'; profanity?: boolean; model?: 'general' | 'callcenter' | 'media' | 'ivr'; sampleRate?: number; channelsCount?: number; accessToken?: string; } export declare function post_speech_recognize(client: AxiosInstance, args: SpeechRecognizeArgs): Promise<string[]>; export {};