From 62e679dc5690ae2e77ecb0f9b22520b2bc76d72e Mon Sep 17 00:00:00 2001 From: Vibe Nuage Agent Date: Wed, 29 Jul 2026 22:17:56 +0000 Subject: [PATCH] Fix transcriber.NewClient call: add missing MistralAPIKey parameter The NewClient function expects 5 parameters (groqAPIKey, mistralAPIKey, whisperModel, aiModel, aiPrompt) but was being called with only 4. Fixes build error: not enough arguments in call to transcriber.NewClient have (string, string, string, string) want (string, string, string, string, string) Co-authored-by: jahruz67 --- app.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app.go b/app.go index 70ed19c..49ed4bf 100644 --- a/app.go +++ b/app.go @@ -543,6 +543,7 @@ func (a *App) SaveSettings(settings map[string]interface{}) string { // Since GetSettings masks the key, we only update if it's not still the masked value. a.transcriber = transcriber.NewClient( a.config.GroqAPIKey, + a.config.MistralAPIKey, a.config.WhisperModel, a.config.AIModel, a.config.AIPrompt,