Files
llmx/scripts/debug-llmx.sh

10 lines
321 B
Bash
Raw Normal View History

#!/bin/bash
# Set "chatgpt.cliExecutable": "/Users/<USERNAME>/code/llmx/scripts/debug-llmx.sh" in VSCode settings to always get the
# latest llmx-rs binary when debugging LLMX Extension.
set -euo pipefail
LLMX_RS_DIR=$(realpath "$(dirname "$0")/../llmx-rs")
(cd "$LLMX_RS_DIR" && cargo run --quiet --bin llmx -- "$@")