We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97fa997 commit f685c39Copy full SHA for f685c39
1 file changed
src/services/ws.rs
@@ -1006,6 +1006,9 @@ async fn handle_audio(
1006
asr_result = tokio::select! {
1007
r = get_input(&client, &id, asr, &mut rx) => {
1008
log::info!("`{id}` ASR result: {r:?}");
1009
+ if let Err(e) = ws_tx.send(WsCommand::EndResponse){
1010
+ log::error!("`{id}` error: {e}");
1011
+ };
1012
r?
1013
}
1014
r = submit_to_ai(&pool, &mut ws_tx,&mut chat_session, asr_result) => {
0 commit comments