LLM4HEP / logs_interpreter.sh
ho22joshua's picture
initial commit
cfcbbc8
raw
history blame contribute delete
333 Bytes
#!/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" "$@"