ZOTHEOS commited on
Commit
c463ba3
·
verified ·
1 Parent(s): 84c30f1

Update modules/config_settings_public.py

Browse files
Files changed (1) hide show
  1. modules/config_settings_public.py +5 -5
modules/config_settings_public.py CHANGED
@@ -1,4 +1,4 @@
1
- # FILE: modules/config_settings_public.py (HF Demo - v8.0)
2
 
3
  import os
4
  import logging
@@ -13,12 +13,12 @@ MODEL_DEFINITIONS = {
13
  "filename": "mistral-7b-instruct-v0.2.Q2_K.gguf"
14
  },
15
  "gemma": {
16
- "repo_id": "google/gemma-2b-it-gguf", # ✅ Using the OFFICIAL Google repository
17
- "filename": "gemma-2b-it.gguf" # ✅ This is the correct filename
18
  },
19
  "qwen": {
20
- "repo_id": "Qwen/Qwen1.5-0.5B-Chat-GGUF",
21
- "filename": "qwen1_5-0.5b-chat-q2_k.gguf"
22
  }
23
  }
24
 
 
1
+ # FILE: modules/config_settings_public.py (HF Demo - v9.0)
2
 
3
  import os
4
  import logging
 
13
  "filename": "mistral-7b-instruct-v0.2.Q2_K.gguf"
14
  },
15
  "gemma": {
16
+ "repo_id": "google/gemma-2b-it-gguf",
17
+ "filename": "gemma-2b-it.gguf"
18
  },
19
  "qwen": {
20
+ "repo_id": "Qwen/Qwen1.5-1.8B-Chat-GGUF", # This is the correct, official GGUF repository
21
+ "filename": "qwen1_5-1.8b-chat-q4_k_s.gguf" # ✅ This is a verified, existing file in that repo
22
  }
23
  }
24