Remove duplicate '-m' flag in LLM server start
All checks were successful
GBCI / build (push) Successful in 7m12s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-10-01 09:04:31 -03:00
parent 71c33f27f6
commit f8d71462bf

View file

@ -217,7 +217,6 @@ async fn start_llm_server(
// Use absolute paths and proper process management // Use absolute paths and proper process management
let mut cmd = Command::new(executable_path); let mut cmd = Command::new(executable_path);
cmd.arg("-m") cmd.arg("-m")
.arg("-m")
.arg(model_path) .arg(model_path)
.arg("--host") .arg("--host")
.arg("0.0.0.0") .arg("0.0.0.0")