mobinln commited on
Commit
6455a8e
·
verified ·
1 Parent(s): 27275cd

Update start.sh

Browse files
Files changed (1) hide show
  1. start.sh +7 -1
start.sh CHANGED
@@ -1 +1,7 @@
1
- echo "Hi from start.sh"
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ export WORK="/home/user/app"
4
+ cd $WORK
5
+ unzip llama_cpp_avx512.zip > /dev/null 2>&1
6
+ wget -O model.gguf https://huggingface.co/unsloth/DeepSeek-R1-0528-Qwen3-8B-GGUF/blob/main/DeepSeek-R1-0528-Qwen3-8B-UD-IQ1_M.gguf > /dev/null 2>&1
7
+ ./llama-server -m model.gguf --port 8000 --host 0.0.0.0 --threads 2 --ctx-size 4096 --mlock --jinja