waddie commited on
Commit
ced2a68
·
verified ·
1 Parent(s): 3ecca1f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -24,7 +24,9 @@ EXPOSE 7860
24
  # Revert to executing via python's native server module
25
  CMD ["python3", "-m", "llama_cpp.server", \
26
  "--model", "model.gguf", \
27
- "--alias", "model.gguf", \
28
  "--host", "0.0.0.0", \
29
  "--port", "7860", \
30
- "--n_threads", "2"]
 
 
 
24
  # Revert to executing via python's native server module
25
  CMD ["python3", "-m", "llama_cpp.server", \
26
  "--model", "model.gguf", \
27
+ "--alias", "model", \
28
  "--host", "0.0.0.0", \
29
  "--port", "7860", \
30
+ "--n_threads", "2", \
31
+ "--n_ctx", "4096", \
32
+ "--chat_format", "chatml"]