bug: Fixed a bug with the spacing of info output now that function_calling_support is a longer name

This commit is contained in:
2025-11-05 15:41:49 -07:00
parent 9f15f01871
commit 0938119e99
+1 -1
View File
@@ -744,7 +744,7 @@ impl Config {
} }
let output = items let output = items
.iter() .iter()
.map(|(name, value)| format!("{name:<24}{value}\n")) .map(|(name, value)| format!("{name:<30}{value}\n"))
.collect::<Vec<String>>() .collect::<Vec<String>>()
.join(""); .join("");
Ok(output) Ok(output)