From af1237063264ad1ae7e7b076fc2fcfc361ebfc5a Mon Sep 17 00:00:00 2001 From: Tudorel Oprisan Date: Mon, 15 Jun 2026 16:10:49 +0100 Subject: [PATCH] changed llama-server location --- sidecar/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sidecar/app.py b/sidecar/app.py index 2af0a89..f271f92 100644 --- a/sidecar/app.py +++ b/sidecar/app.py @@ -63,7 +63,7 @@ async def _start_llama_server(profile: dict): _kill_llama_server() # Build command from profile flags - cmd = ["llama-server"] + cmd = ["/home/bigt/AI/llama.cpp/bin/llama-server"] cmd += ["--model", profile["model_path"]] cmd += ["--port", str(LLAMA_SERVER_PORT)] for key, value in profile.get("flags", {}).items():