Spaces:
Runtime error
Runtime error
File size: 421 Bytes
5c20520 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
cd /zhangjiawei/protein_rag
source /root/miniconda3/etc/profile.d/conda.sh
conda activate rag_llm
for arg in "$@"
do
case $arg in
proxy=*) proxy="${arg#*=}" ;;
*) ;;
esac
done
# export http_proxy=http://${proxy}:4780 && export https_proxy=http://${proxy}:4780
# echo http_proxy=http://${proxy}:4780
# echo https_proxy=http://${proxy}:4780
# http_proxy=http://=10.16.12.236:4780
python demo.py |