Fixed llama-server path

This commit is contained in:
Tudorel Oprisan 2026-06-15 17:01:53 +01:00
parent 7e86a30bd8
commit 1e9305395e

View File

@ -63,7 +63,7 @@ async def _start_llama_server(profile: dict):
_kill_llama_server() _kill_llama_server()
# Build command from profile flags # 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 += ["--model", profile["model_path"]]
cmd += ["--port", str(LLAMA_SERVER_PORT)] cmd += ["--port", str(LLAMA_SERVER_PORT)]
for key, value in profile.get("flags", {}).items(): for key, value in profile.get("flags", {}).items():