boning123 commited on
Commit
fbbc841
·
verified ·
1 Parent(s): a04b039

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -16,7 +16,7 @@ RUN pip install --no-cache-dir -r requirements.txt
16
  # GGUF model (gemma3 architecture, compatible)
17
  RUN mkdir models && \
18
  curl -L -o models/Sam-reason-S2.1.Q4_K_S.gguf \
19
- https://huggingface.co/TheBloke/Mistral-7B-v0.1-GGUF && \
20
  test $(stat -c%s models/Sam-reason-S2.1.Q4_K_S.gguf) -gt 300000000 || (echo "Model download failed or incomplete" && exit 1)
21
 
22
  COPY agent.py .
 
16
  # GGUF model (gemma3 architecture, compatible)
17
  RUN mkdir models && \
18
  curl -L -o models/Sam-reason-S2.1.Q4_K_S.gguf \
19
+ https://huggingface.co/TheBloke/Mistral-7B-v0.1-GGUF/blob/main/mistral-7b-v0.1.Q4_K_S.gguf && \
20
  test $(stat -c%s models/Sam-reason-S2.1.Q4_K_S.gguf) -gt 300000000 || (echo "Model download failed or incomplete" && exit 1)
21
 
22
  COPY agent.py .