We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d82d805 commit 7b7d8baCopy full SHA for 7b7d8ba
start.sh
@@ -3,12 +3,12 @@
3
# إنشاء مجلد النماذج إذا لم يكن موجود
4
mkdir -p models
5
6
-# تحميل النموذج من المستودع الآخر إذا لم يكن موجود
+# تحميل النموذج إذا لم يكن موجود
7
if [ ! -f models/tinyllama-1.1b-chat-v1.0.Q8_0.gguf ]; then
8
echo "Downloading model..."
9
wget -O models/tinyllama-1.1b-chat-v1.0.Q8_0.gguf \
10
https://raw.githubusercontent.com/issa261/github-workflows-download-model.yml/main/tinyllama-1.1b-chat-v1.0.Q8_0.gguf
11
fi
12
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
+# تشغيل السيرفر من مجلد build
+./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