Skip to content

Commit 7b7d8ba

Browse files
authored
Update start.sh
1 parent d82d805 commit 7b7d8ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

start.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
# إنشاء مجلد النماذج إذا لم يكن موجود
44
mkdir -p models
55

6-
# تحميل النموذج من المستودع الآخر إذا لم يكن موجود
6+
# تحميل النموذج إذا لم يكن موجود
77
if [ ! -f models/tinyllama-1.1b-chat-v1.0.Q8_0.gguf ]; then
88
echo "Downloading model..."
99
wget -O models/tinyllama-1.1b-chat-v1.0.Q8_0.gguf \
1010
https://raw.githubusercontent.com/issa261/github-workflows-download-model.yml/main/tinyllama-1.1b-chat-v1.0.Q8_0.gguf
1111
fi
1212

13-
# تشغيل السيرفر
14-
./server -m models/tinyllama-1.1b-chat-v1.0.Q8_0.gguf -c 512 -n 256 --host 0.0.0.0 --port 8080
13+
# تشغيل السيرفر من مجلد build
14+
./build/server -m models/tinyllama-1.1b-chat-v1.0.Q8_0.gguf -c 512 -n 256 --host 0.0.0.0 --port 8080

0 commit comments

Comments
 (0)