imperialwool commited on
Commit
3f7c0d0
·
verified ·
1 Parent(s): 7c1334f

change model

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,7 +5,7 @@ FROM python:3.11.5-slim-bookworm
5
  USER root
6
 
7
  # Installing gcc compiler and main library.
8
- RUN apt update && apt install gcc cmake build-essential -y
9
  RUN CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" pip install llama-cpp-python
10
 
11
  # Copying files into folder and making it working dir.
@@ -19,7 +19,7 @@ RUN mkdir translator
19
  RUN chmod -R 777 translator
20
 
21
  # Installing wget and downloading model.
22
- ADD https://huggingface.co/TheBloke/openchat_3.5-GGUF/resolve/main/openchat_3.5.Q4_K_M.gguf /app/model.bin
23
  RUN chmod -R 777 /app/model.bin
24
  # You can use other models! Or u can comment this two RUNs and include in Space/repo/Docker image own model with name "model.bin".
25
 
 
5
  USER root
6
 
7
  # Installing gcc compiler and main library.
8
+ RUN apt update && apt install wget gcc cmake build-essential -y
9
  RUN CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" pip install llama-cpp-python
10
 
11
  # Copying files into folder and making it working dir.
 
19
  RUN chmod -R 777 translator
20
 
21
  # Installing wget and downloading model.
22
+ ADD https://huggingface.co/NousResearch/Hermes-2-Pro-Mistral-7B-GGUF/resolve/main/Hermes-2-Pro-Mistral-7B.Q4_K_M.gguf /app/model.bin
23
  RUN chmod -R 777 /app/model.bin
24
  # You can use other models! Or u can comment this two RUNs and include in Space/repo/Docker image own model with name "model.bin".
25