Botchat_Demo / download.sh
frankwei's picture
initial
0b01481
raw
history blame
No virus
283 Bytes
#!/bin/sh
if [ ! -d "chatglm2-6b-int4" ]
then
echo "Downloading..."
git lfs clone https://huggingface.co/THUDM/chatglm2-6b-int4
fi
if [ ! -d "Qwen-7B-Chat-Int4" ]
then
echo "Downloading..."
git lfs clone https://huggingface.co/Qwen/Qwen-7B-Chat-Int4
fi
echo "Done."