From 1e9305395ea75246daa451be6125d8dad6779e51 Mon Sep 17 00:00:00 2001 From: Tudorel Oprisan Date: Mon, 15 Jun 2026 17:01:53 +0100 Subject: [PATCH] Fixed llama-server path --- sidecar/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sidecar/app.py b/sidecar/app.py index edd7bca..fab7739 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 = ["/home/bigt/AI/llama.cpp/bin/llama-server"] + cmd = ["/home/bigt/AI/llama.cpp/build/bin/llama-server"] cmd += ["--model", profile["model_path"]] cmd += ["--port", str(LLAMA_SERVER_PORT)] for key, value in profile.get("flags", {}).items():