gefdsv commited on
Commit
7bee3fa
·
verified ·
1 Parent(s): 1a1dc3b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,6 +2,6 @@ FROM ghcr.io/ggml-org/llama.cpp:full
2
 
3
  RUN apt update && apt install wget -y
4
 
5
- RUN wget "https://huggingface.co/unsloth/GLM-4.7-Flash-REAP-23B-A3B-GGUF/resolve/main/GLM-4.7-Flash-REAP-23B-A3B-Q2_K_L.gguf" -O /model.gguf
6
 
7
- CMD ["--server", "-m", "/model.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "1024", "--no-mmap", "--temp", "1.0", "--top-p", "0.95", "--top-k", "64", "--reasoning-budget", "256", "-c", "4096"]
 
2
 
3
  RUN apt update && apt install wget -y
4
 
5
+ RUN wget "https://huggingface.co/unsloth/GLM-4.7-Flash-REAP-23B-A3B-GGUF/resolve/main/GLM-4.7-Flash-REAP-23B-A3B-Q2_K.gguf" -O /model.gguf
6
 
7
+ CMD ["--server", "-m", "/model.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "768", "--no-mmap", "--temp", "1.0", "--top-p", "0.95", "--top-k", "64", "--reasoning-budget", "0", "--reasoning", "off", "-c", "4096"]