From 1221230177e7381274383699850537bd95f61da0 Mon Sep 17 00:00:00 2001 From: TroyHernandez Date: Wed, 18 Mar 2026 09:59:48 -0500 Subject: [PATCH] Fix stt.api function call: transcribe() -> stt() stt.api exports stt(), not transcribe(). This broke all transcription. --- R/app_server.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/app_server.R b/R/app_server.R index 1f13edb..a26b241 100644 --- a/R/app_server.R +++ b/R/app_server.R @@ -297,7 +297,7 @@ app_server <- function( # Transcribe chunk tryCatch({ message(">>> Transcribing chunk ", chunk_data$index) - res <- stt.api::transcribe( + res <- stt.api::stt( file = wav_file, model = model, language = language, @@ -424,7 +424,7 @@ app_server <- function( shiny::incProgress(0.2, detail = "Running transcription") tryCatch({ - res <- stt.api::transcribe( + res <- stt.api::stt( file = audio_path, model = model, language = language,