File size: 333 Bytes
cfcbbc8
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/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" "$@"