#!/usr/bin/env bash # Run Chandra CLI with --method hf (Hugging Face local inference). set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" for a in "$@"; do if [[ "$a" == "--method" ]]; then exec "${SCRIPT_DIR}/run-chandra.sh" "$@" fi done exec "${SCRIPT_DIR}/run-chandra.sh" "$@" --method hf