CyberCoder225 commited on
Commit
94a36fb
·
verified ·
1 Parent(s): e26c954

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +16 -0
Dockerfile CHANGED
@@ -25,6 +25,22 @@ RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(rep
25
  # Model 2: Medium (1B)
26
  RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='bartowski/Llama-3.2-1B-Instruct-GGUF', filename='Llama-3.2-1B-Instruct-Q4_K_M.gguf', local_dir='.')"
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  # Copy your app.py and brain.py files
29
  COPY . .
30
 
 
25
  # Model 2: Medium (1B)
26
  RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='bartowski/Llama-3.2-1B-Instruct-GGUF', filename='Llama-3.2-1B-Instruct-Q4_K_M.gguf', local_dir='.')"
27
 
28
+ # ... (Keep your existing RUN pip and apt-get lines)
29
+
30
+ # 1. Original Small
31
+ 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='.')"
32
+ # 2. Existing Medium (Llama 3.2)
33
+ RUN python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download(repo_id='bartowski/Llama-3.2-1B-Instruct-GGUF', filename='Llama-3.2-1B-Instruct-Q4_K_M.gguf', local_dir='.')"
34
+
35
+ # --- NEW FEMALE PERSONA MODELS ---
36
+ # 3. Qwen 2.5 1.5B (Very smart/balanced)
37
+ 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='.')"
38
+ # 4. Danube 3 (Fast and chatty)
39
+ 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-v1-q4_k_m.gguf', local_dir='.')"
40
+ # 5. StableLM 2 (Elegant/Creative)
41
+ 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='.')"
42
+
43
+ # ... (rest of Dockerfile)
44
  # Copy your app.py and brain.py files
45
  COPY . .
46