diff --git a/Cargo.toml b/Cargo.toml index 55f898011539802c41801eb2356622b8b4ea305f..c1102dec9254bf55cd387aabd6a53167f52a05c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -373,7 +373,6 @@ arc_with_non_send_sync = "allow" await_holding_lock = "allow" borrowed_box = "allow" cast_abs_to_unsigned = "allow" -cmp_owned = "allow" derive_ord_xor_partial_ord = "allow" eq_op = "allow" implied_bounds_in_impls = "allow" diff --git a/crates/assistant/src/assistant_panel.rs b/crates/assistant/src/assistant_panel.rs index 97f0bca08309061874b4d640c24304c825a5daa2..28623ea8b147aa1a17a3083628c9567ee5b93467 100644 --- a/crates/assistant/src/assistant_panel.rs +++ b/crates/assistant/src/assistant_panel.rs @@ -652,7 +652,7 @@ impl AssistantPanel { // If Markdown or No Language is Known, increase the randomness for more creative output // If Code, decrease temperature to get more deterministic outputs let temperature = if let Some(language) = language_name.clone() { - if language.to_string() != "Markdown".to_string() { + if *language != *"Markdown" { 0.5 } else { 1.0