From 509f683365fa881f26f7c59f91a63a11c9821964 Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Sat, 14 Sep 2024 09:30:58 +0300 Subject: [PATCH] Fix typo --- src/controller/chat_completion/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controller/chat_completion/mod.rs b/src/controller/chat_completion/mod.rs index 59ceb92..7386373 100644 --- a/src/controller/chat_completion/mod.rs +++ b/src/controller/chat_completion/mod.rs @@ -58,11 +58,11 @@ pub async fn handle( return Ok(()); } SpeechToTextFlowType::TranscribeAndGenerateText => { - tracing::debug!("Will be trascribing and possibly generating text.."); + tracing::debug!("Will be transcribing and possibly generating text.."); MessageResponseType::InThread(message_context.thread_info().clone()) } SpeechToTextFlowType::OnlyTranscribe => { - tracing::debug!("Will only be trascribing audio to text.."); + tracing::debug!("Will only be transcribing audio to text.."); if message_context.thread_info().is_thread_root_only() { MessageResponseType::Reply(message_context.thread_info().root_event_id.clone()) } else {