#!/bin/bash

# Default values
llm_dir="$(dirname "$(python -c "import bigdl.cpp;print(bigdl.cpp.__file__)")")"
lib_dir="$llm_dir/libs"

# command1="ln -s ${lib_dir}/* ${PWD}"
command1="find ${lib_dir} -type f ! -name 'ollama' -exec ln -s {} . \;"
eval "$command1"
command2="cp ${llm_dir}/convert.py ."
eval "$command2"
