We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a08ab87 commit c06942fCopy full SHA for c06942f
plugins/listener/src/fsm.rs
@@ -332,14 +332,14 @@ async fn setup_listen_client<R: tauri::Runtime>(
332
.unwrap_or_default()
333
};
334
335
- tracing::info!(api_base = ?api_base, api_key = ?api_key, "listen_client");
+ tracing::info!(api_base = ?api_base, api_key = ?api_key, language = ?language, "listen_client");
336
337
Ok(crate::client::ListenClient::builder()
338
.api_base(api_base)
339
.api_key(api_key)
340
.params(hypr_listener_interface::ListenParams {
341
language,
342
- static_prompt: jargons.join(", "),
+ static_prompt: "".to_string(),
343
..Default::default()
344
})
345
.build())
0 commit comments