# !/bin/bash SHELL_FOLDER=$(cd "$(dirname "$0")";pwd) cd $SHELL_FOLDER source "$(dirname $(which conda))/../etc/profile.d/conda.sh" conda activate py3.11+pytorch2.6+cu124 RANK=0 # 处理命名参数 while [[ $# -gt 0 ]]; do case "$1" in --rank=*) RANK="${1#*=}" shift ;; *) echo "未知参数: $1" shift ;; esac done CUDA_VISIBLE_DEVICES=${RANK} python app_chat.py \ --port $((7860 + RANK)) \ --share