dotandru commited on
Commit
618d88b
·
1 Parent(s): 644a65a

Fix Jinja and format

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. requirements.txt +1 -0
Dockerfile CHANGED
@@ -19,4 +19,4 @@ COPY --chown=user . .
19
 
20
  # Run llama-cpp-python server
21
  # Port 7860 is required for HF Spaces
22
- CMD ["python", "-m", "llama_cpp.server", "--model", "model.gguf", "--host", "0.0.0.0", "--port", "7860", "--n_ctx", "4096", "--chat_format", "llama-2"]
 
19
 
20
  # Run llama-cpp-python server
21
  # Port 7860 is required for HF Spaces
22
+ CMD ["python", "-m", "llama_cpp.server", "--model", "model.gguf", "--host", "0.0.0.0", "--port", "7860", "--n_ctx", "4096"]
requirements.txt CHANGED
@@ -1,2 +1,3 @@
1
  llama-cpp-python[server]==0.2.90
2
  huggingface_hub
 
 
1
  llama-cpp-python[server]==0.2.90
2
  huggingface_hub
3
+ jinja2