Spaces:
Sleeping
Sleeping
Update modules/config_settings_public.py
Browse files
modules/config_settings_public.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# FILE: modules/config_settings_public.py (
|
2 |
|
3 |
import os
|
4 |
import sys
|
@@ -15,14 +15,14 @@ if not logger.handlers:
|
|
15 |
|
16 |
IS_WEB_MODE = os.path.exists("/home/user/app")
|
17 |
|
18 |
-
# ---
|
19 |
MODEL_DEFINITIONS = {
|
20 |
"mistral": {
|
21 |
"repo_id": "TheBloke/Mistral-7B-Instruct-v0.2-GGUF",
|
22 |
"filename": "mistral-7b-instruct-v0.2.Q4_K_M.gguf"
|
23 |
},
|
24 |
"gemma": {
|
25 |
-
"repo_id": "TheBloke/gemma-2B-it-GGUF",
|
26 |
"filename": "gemma-2b-it.Q4_K_M.gguf"
|
27 |
},
|
28 |
"qwen": {
|
@@ -76,5 +76,5 @@ MODEL_ROLE_SYSTEM_PROMPTS = {
|
|
76 |
"analyst": "You are an impartial analyst.", "humanist": "You are a human-centered assistant.",
|
77 |
"skeptic": "You are a critical evaluator and a respectful skeptic.", "general": DEFAULT_SYSTEM_PROMPT
|
78 |
}
|
79 |
-
ZOTHEOS_VERSION = "2.
|
80 |
logger.info(f"Config loaded. Version: {ZOTHEOS_VERSION}, Web Mode: {IS_WEB_MODE}")
|
|
|
1 |
+
# FILE: modules/config_settings_public.py (Definitive Final Version 3 - Corrected Gemma Repo ID)
|
2 |
|
3 |
import os
|
4 |
import sys
|
|
|
15 |
|
16 |
IS_WEB_MODE = os.path.exists("/home/user/app")
|
17 |
|
18 |
+
# --- ✅✅✅ CORRECTED GEMMA REPO ID (2B, not 2b) ✅✅✅ ---
|
19 |
MODEL_DEFINITIONS = {
|
20 |
"mistral": {
|
21 |
"repo_id": "TheBloke/Mistral-7B-Instruct-v0.2-GGUF",
|
22 |
"filename": "mistral-7b-instruct-v0.2.Q4_K_M.gguf"
|
23 |
},
|
24 |
"gemma": {
|
25 |
+
"repo_id": "TheBloke/gemma-2B-it-GGUF", # Corrected from 2b to 2B
|
26 |
"filename": "gemma-2b-it.Q4_K_M.gguf"
|
27 |
},
|
28 |
"qwen": {
|
|
|
76 |
"analyst": "You are an impartial analyst.", "humanist": "You are a human-centered assistant.",
|
77 |
"skeptic": "You are a critical evaluator and a respectful skeptic.", "general": DEFAULT_SYSTEM_PROMPT
|
78 |
}
|
79 |
+
ZOTHEOS_VERSION = "2.1 (Live)"
|
80 |
logger.info(f"Config loaded. Version: {ZOTHEOS_VERSION}, Web Mode: {IS_WEB_MODE}")
|