TaoNet-mini-T2 / run_chat_fixed.sh
StarMist0012's picture
Add files using upload-large-folder tool
388fd6e verified
#!/usr/bin/env bash
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
if [[ -x "$ROOT/.venv/bin/python" ]]; then
"$ROOT/.venv/bin/python" "$ROOT/chat_ssm_fixed.py" --interactive
else
python "$ROOT/chat_ssm_fixed.py" --interactive
fi