#!/usr/bin/env bash # Load and activate the Conda environment for CBORG analysis module load conda conda activate llm_env # Wrapper to run the log interpreter script with python3 if ! command -v python3 &>/dev/null; then echo "Error: python3 not found in PATH" exit 1 fi dir=$(dirname "$0") python3 "$dir/logs_interpreter.py" "$@"