/** * Zhipu / GLM audio transcription (GLM-ASR-2512). * Docs: https://docs.bigmodel.cn/api-reference/模型-api/语音转文本 * * Env (STT-prefixed — never reuse LLM AGIM_ZHIPU_API_KEY): * AGIM_STT_ZHIPU_API_KEY * AGIM_STT_ZHIPU_BASE_URL — optional, default https://open.bigmodel.cn/api/paas/v4 * AGIM_STT_ZHIPU_MODEL — optional, default glm-asr-2512 * * Limits (vendor): .wav / .mp3, ≤25 MB, ≤30 s. We convert to 16 kHz WAV. */ export declare function isGlmSpeechConfigured(): boolean; export declare function transcribeWithGlm(filePath: string, _opts?: { language?: string; }): Promise; //# sourceMappingURL=transcribe-glm.d.ts.map