Skip to content

Commit 8dab786

Browse files
committed
fix(typo): grop tts log
1 parent d28e370 commit 8dab786

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/services/realtime_ws.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1184,7 +1184,7 @@ async fn tts_and_send(
11841184
let wav_data =
11851185
crate::ai::tts::groq(&groq.model, &groq.api_key, &groq.voice, &text).await?;
11861186
let duration_sec = send_wav(tx, response_id, item_id, text, wav_data).await?;
1187-
log::info!("Fish TTS duration: {:?}", duration_sec);
1187+
log::info!("Groq TTS duration: {:?}", duration_sec);
11881188
Ok(())
11891189
}
11901190
crate::config::TTSConfig::StreamGSV(stream_tts) => {

src/services/ws.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ async fn tts_and_send(pool: &WsSetting, tx: &mut WsTx, text: String) -> anyhow::
294294
let wav_data =
295295
crate::ai::tts::groq(&groq.model, &groq.api_key, &groq.voice, &text).await?;
296296
let duration_sec = send_wav(tx, text, wav_data).await?;
297-
log::info!("Fish TTS duration: {:?}", duration_sec);
297+
log::info!("Groq TTS duration: {:?}", duration_sec);
298298
Ok(())
299299
}
300300
crate::config::TTSConfig::StreamGSV(stream_tts) => {

0 commit comments

Comments
 (0)