stivenDR14
commited on
Commit
·
9000413
1
Parent(s):
4455476
update models
Browse files
utils.py
CHANGED
@@ -8,8 +8,8 @@ ENVIRONMENT = os.getenv("ENVIRONMENT")
|
|
8 |
|
9 |
if ENVIRONMENT == "dev":
|
10 |
AI_MODELS = {
|
11 |
-
"Huggingface / Microsoft Phi 4 mini Instruct": "microsoft/Phi-4-mini-instruct",
|
12 |
"Huggingface / Mistral Nemo Instruct": "mistralai/Mistral-Nemo-Instruct-2407",
|
|
|
13 |
"Huggingface / Google Gemma 2 9B Instruct": "google/gemma-2-9b-it",
|
14 |
"Huggingface / Meta Llama 3.1 8B Instruct": "meta-llama/Llama-3.1-8B-Instruct",
|
15 |
"Huggingface / SmolLM2 1.7B Instruct": "HuggingFaceTB/SmolLM2-1.7B-Instruct",
|
@@ -18,8 +18,8 @@ if ENVIRONMENT == "dev":
|
|
18 |
}
|
19 |
else:
|
20 |
AI_MODELS = {
|
21 |
-
"Huggingface / Microsoft Phi 4 mini Instruct": "microsoft/Phi-4-mini-instruct",
|
22 |
"Huggingface / Mistral Nemo Instruct": "mistralai/Mistral-Nemo-Instruct-2407",
|
|
|
23 |
"Huggingface / Google Gemma 2 9B Instruct": "google/gemma-2-9b-it",
|
24 |
"Huggingface / Meta Llama 3.1 8B Instruct": "meta-llama/Llama-3.1-8B-Instruct",
|
25 |
"Huggingface / SmolLM2 1.7B Instruct": "HuggingFaceTB/SmolLM2-1.7B-Instruct",
|
|
|
8 |
|
9 |
if ENVIRONMENT == "dev":
|
10 |
AI_MODELS = {
|
|
|
11 |
"Huggingface / Mistral Nemo Instruct": "mistralai/Mistral-Nemo-Instruct-2407",
|
12 |
+
"Huggingface / Microsoft Phi 4 mini Instruct": "microsoft/Phi-3.5-MoE-instruct",
|
13 |
"Huggingface / Google Gemma 2 9B Instruct": "google/gemma-2-9b-it",
|
14 |
"Huggingface / Meta Llama 3.1 8B Instruct": "meta-llama/Llama-3.1-8B-Instruct",
|
15 |
"Huggingface / SmolLM2 1.7B Instruct": "HuggingFaceTB/SmolLM2-1.7B-Instruct",
|
|
|
18 |
}
|
19 |
else:
|
20 |
AI_MODELS = {
|
|
|
21 |
"Huggingface / Mistral Nemo Instruct": "mistralai/Mistral-Nemo-Instruct-2407",
|
22 |
+
"Huggingface / Microsoft Phi 4 mini Instruct": "microsoft/Phi-3.5-MoE-instruct",
|
23 |
"Huggingface / Google Gemma 2 9B Instruct": "google/gemma-2-9b-it",
|
24 |
"Huggingface / Meta Llama 3.1 8B Instruct": "meta-llama/Llama-3.1-8B-Instruct",
|
25 |
"Huggingface / SmolLM2 1.7B Instruct": "HuggingFaceTB/SmolLM2-1.7B-Instruct",
|