CyberCoder225 commited on
Commit
d2190fb
·
verified ·
1 Parent(s): aa56856

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -5
Dockerfile CHANGED
@@ -19,8 +19,6 @@ RUN pip install --no-cache-dir \
19
  WORKDIR /app
20
 
21
  # --- NEURAL CORE DOWNLOADS ---
22
- # Corrected Python syntax: import; hf_hub_download(...)
23
-
24
  # 1. Maira Lite
25
  RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='CyberCoder225/maira-model', filename='SmolLM2-360M-Instruct.Q4_K_M.gguf', local_dir='.')"
26
 
@@ -30,11 +28,11 @@ RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(rep
30
  # 3. Maira Logic
31
  RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='Qwen/Qwen2.5-1.5B-Instruct-GGUF', filename='qwen2.5-1.5b-instruct-q4_k_m.gguf', local_dir='.')"
32
 
33
- # 4. Maira Chat (Danube) - Corrected filename case
34
  RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='h2oai/h2o-danube3-500m-chat-GGUF', filename='h2o-danube3-500m-chat-Q4_K_M.gguf', local_dir='.')"
35
 
36
- # 5. Maira Art
37
- RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='stabilityai/stablelm-2-zephyr-1_6b-gguf', filename='stablelm-2-zephyr-1_6b-Q4_K_M.gguf', local_dir='.')"
38
 
39
  # Copy your app.py and brain.py files
40
  COPY . .
 
19
  WORKDIR /app
20
 
21
  # --- NEURAL CORE DOWNLOADS ---
 
 
22
  # 1. Maira Lite
23
  RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='CyberCoder225/maira-model', filename='SmolLM2-360M-Instruct.Q4_K_M.gguf', local_dir='.')"
24
 
 
28
  # 3. Maira Logic
29
  RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='Qwen/Qwen2.5-1.5B-Instruct-GGUF', filename='qwen2.5-1.5b-instruct-q4_k_m.gguf', local_dir='.')"
30
 
31
+ # 4. Maira Chat
32
  RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='h2oai/h2o-danube3-500m-chat-GGUF', filename='h2o-danube3-500m-chat-Q4_K_M.gguf', local_dir='.')"
33
 
34
+ # 5. Maira Art - SWAPPED to Granite 2B (Open Model, no login needed)
35
+ RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='bartowski/granite-3.0-2b-instruct-GGUF', filename='granite-3.0-2b-instruct-Q4_K_M.gguf', local_dir='.')"
36
 
37
  # Copy your app.py and brain.py files
38
  COPY . .