Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -13,17 +13,12 @@ import ollama
|
|
13 |
|
14 |
# Model from run.sh
|
15 |
MODEL_ID_MAP = {
|
16 |
-
"(LiquidAI)LFM2-1.2B": 'hf.co/LiquidAI/LFM2-1.2B-GGUF:Q5_K_M',
|
17 |
-
"(LiquidAI)LFM2-700M": 'hf.co/LiquidAI/LFM2-700M-GGUF:Q5_K_M',
|
18 |
-
"(LiquidAI)LFM2-350M": 'hf.co/LiquidAI/LFM2-350M-GGUF:Q5_K_M',
|
19 |
-
"(Google)Gemma-3-270M-it-qat": 'hf.co/unsloth/gemma-3-270m-it-qat-GGUF:Q5_K_M',
|
20 |
-
"(ιΏιεε)Qwen3-4B-Instruct-2507": 'hf.co/bartowski/Qwen_Qwen3-4B-Instruct-2507-GGUF:Q4_K_M',
|
21 |
"(IBM)Granite3.3-2B": 'granite3.3:2b',
|
|
|
22 |
"(Meta)Llama3.2-3B-Instruct": 'hf.co/bartowski/Llama-3.2-3B-Instruct-GGUF:Q4_K_M', # OK speed with CPU
|
23 |
#"(ιΏιεε)Qwen3-4B-Thinking-2507": 'hf.co/bartowski/Qwen_Qwen3-4B-Thinking-2507-GGUF:Q4_K_M',
|
24 |
"(Google)Gemma3n-e2b-it": 'gemma3n:e2b-it-q4_K_M',
|
25 |
-
|
26 |
-
#"(Tencent)ζ··ε
-4B-Instruct": 'hf.co/bartowski/tencent_Hunyuan-4B-Instruct-GGUF:Q4_K_M',
|
27 |
"(HuggingFace)SmolLM2-360M": 'smollm2:360m-instruct-q5_K_M'
|
28 |
}
|
29 |
|
|
|
13 |
|
14 |
# Model from run.sh
|
15 |
MODEL_ID_MAP = {
|
|
|
|
|
|
|
|
|
|
|
16 |
"(IBM)Granite3.3-2B": 'granite3.3:2b',
|
17 |
+
"(ιΏιεε)Qwen3-4B-Instruct-2507": 'hf.co/bartowski/Qwen_Qwen3-4B-Instruct-2507-GGUF:Q4_K_M',
|
18 |
"(Meta)Llama3.2-3B-Instruct": 'hf.co/bartowski/Llama-3.2-3B-Instruct-GGUF:Q4_K_M', # OK speed with CPU
|
19 |
#"(ιΏιεε)Qwen3-4B-Thinking-2507": 'hf.co/bartowski/Qwen_Qwen3-4B-Thinking-2507-GGUF:Q4_K_M',
|
20 |
"(Google)Gemma3n-e2b-it": 'gemma3n:e2b-it-q4_K_M',
|
21 |
+
"(Google)Gemma-3-270M-it-qat": 'hf.co/unsloth/gemma-3-270m-it-qat-GGUF:Q5_K_M',
|
|
|
22 |
"(HuggingFace)SmolLM2-360M": 'smollm2:360m-instruct-q5_K_M'
|
23 |
}
|
24 |
|