rikunarita commited on
Commit
f677a80
·
verified ·
1 Parent(s): 6a1488f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -8,12 +8,12 @@ RUN pip install -U huggingface_hub
8
 
9
  # モデルをHugging Faceからダウンロード
10
  RUN python3 -c 'from huggingface_hub import hf_hub_download; \
11
- repo="mradermacher/Logic-Coder-7B-GGUF"; \
12
- hf_hub_download(repo_id=repo, filename="Logic-Coder-7B.Q4_K_M.gguf", local_dir="/app")'
13
 
14
  # サーバーの設定
15
  CMD ["--server", \
16
- "-m", "/app/Logic-Coder-7B.Q4_K_M.gguf", \
17
  "--host", "0.0.0.0", \
18
  "--port", "7860", \
19
  "-t", "2", \
 
8
 
9
  # モデルをHugging Faceからダウンロード
10
  RUN python3 -c 'from huggingface_hub import hf_hub_download; \
11
+ repo="AIencoder/Logic-Coder-7B-Q4_K_M-GGUF"; \
12
+ hf_hub_download(repo_id=repo, filename="logic-coder-7b-q4_k_m.gguf", local_dir="/app")'
13
 
14
  # サーバーの設定
15
  CMD ["--server", \
16
+ "-m", "/app/logic-coder-7b-q4_k_m.gguf", \
17
  "--host", "0.0.0.0", \
18
  "--port", "7860", \
19
  "-t", "2", \