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():