From 20aeb2ef19c1b4b305560911ecf1224eb091e6d7 Mon Sep 17 00:00:00 2001 From: Roland Tannous <115670425+rolandtannous@users.noreply.github.com> Date: Thu, 12 Mar 2026 18:13:56 +0400 Subject: [PATCH] Update studio.py --- cli/commands/studio.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cli/commands/studio.py b/cli/commands/studio.py index fd32c1912a..4658ca5d3c 100644 --- a/cli/commands/studio.py +++ b/cli/commands/studio.py @@ -373,7 +373,10 @@ def _build_llama_cpp(): stderr = subprocess.STDOUT, ) - server_bin = build_dir / "bin" / "llama-server" + if sys.platform == "win32": + server_bin = build_dir / "bin" / "Release" / "llama-server.exe" + else: + server_bin = build_dir / "bin" / "llama-server" if server_bin.is_file(): typer.echo(f" llama-server built at {server_bin}") else: