Adding more models ? - What wind.surf will do ?
Browse files- app.py +35 -0
- models.lst +15 -1
app.py
CHANGED
@@ -13,6 +13,41 @@ MODELS = {
|
|
13 |
"repo_id": "lmstudio-community/Llama-3.2-1B-Instruct-GGUF",
|
14 |
"filename": "*Q4_K_M.gguf",
|
15 |
"chat_format": "chatml"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
}
|
17 |
}
|
18 |
|
|
|
13 |
"repo_id": "lmstudio-community/Llama-3.2-1B-Instruct-GGUF",
|
14 |
"filename": "*Q4_K_M.gguf",
|
15 |
"chat_format": "chatml"
|
16 |
+
},
|
17 |
+
"Phi-3.5-mini": {
|
18 |
+
"repo_id": "bartowski/Phi-3.5-mini-instruct-GGUF",
|
19 |
+
"filename": "*Q4_K_M.gguf",
|
20 |
+
"chat_format": "chatml"
|
21 |
+
},
|
22 |
+
"Granite-3B": {
|
23 |
+
"repo_id": "lmstudio-community/granite-3.0-3b-a800m-instruct-GGUF",
|
24 |
+
"filename": "*Q4_K_M.gguf",
|
25 |
+
"chat_format": "chatml"
|
26 |
+
},
|
27 |
+
"Qwen2.5-3B": {
|
28 |
+
"repo_id": "lmstudio-community/Qwen2.5-3B-Instruct-GGUF",
|
29 |
+
"filename": "*Q4_K_M.gguf",
|
30 |
+
"chat_format": "chatml"
|
31 |
+
},
|
32 |
+
"SmolLM2-1.7B": {
|
33 |
+
"repo_id": "HuggingFaceTB/SmolLM2-1.7B-Instruct-GGUF",
|
34 |
+
"filename": "*Q4_K_M.gguf",
|
35 |
+
"chat_format": "chatml"
|
36 |
+
},
|
37 |
+
"Qwen2.5-1.5B": {
|
38 |
+
"repo_id": "lmstudio-community/Qwen2.5-1.5B-Instruct-GGUF",
|
39 |
+
"filename": "*Q4_K_M.gguf",
|
40 |
+
"chat_format": "chatml"
|
41 |
+
},
|
42 |
+
"Granite-1B": {
|
43 |
+
"repo_id": "lmstudio-community/granite-3.0-1b-a400m-instruct-GGUF",
|
44 |
+
"filename": "*Q4_K_M.gguf",
|
45 |
+
"chat_format": "chatml"
|
46 |
+
},
|
47 |
+
"AMD-OLMo-1B": {
|
48 |
+
"repo_id": "lmstudio-community/AMD-OLMo-1B-SFT-GGUF",
|
49 |
+
"filename": "*Q4_K_M.gguf",
|
50 |
+
"chat_format": "chatml"
|
51 |
}
|
52 |
}
|
53 |
|
models.lst
CHANGED
@@ -1,3 +1,17 @@
|
|
1 |
Stack of modesl to try:
|
2 |
|
3 |
-
https://huggingface.co/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
Stack of modesl to try:
|
2 |
|
3 |
+
https://huggingface.co/bartowski/Phi-3.5-mini-instruct-GGUF
|
4 |
+
|
5 |
+
https://huggingface.co/lmstudio-community/granite-3.0-3b-a800m-instruct-GGUF
|
6 |
+
|
7 |
+
https://huggingface.co/lmstudio-community/Qwen2.5-3B-Instruct-GGUF
|
8 |
+
|
9 |
+
https://huggingface.co/HuggingFaceTB/SmolLM2-1.7B-Instruct-GGUF
|
10 |
+
|
11 |
+
https://huggingface.co/lmstudio-community/Qwen2.5-1.5B-Instruct-GGUF
|
12 |
+
|
13 |
+
https://huggingface.co/lmstudio-community/granite-3.0-1b-a400m-instruct-GGUF
|
14 |
+
|
15 |
+
https://huggingface.co/lmstudio-community/AMD-OLMo-1B-SFT-GGUF
|
16 |
+
|
17 |
+
|