Spaces:
Running
Running
CaioXapelaum
commited on
Commit
•
5a2e760
1
Parent(s):
0b834b2
Update app.py
Browse files
app.py
CHANGED
@@ -104,6 +104,13 @@ hf_hub_download(
|
|
104 |
token=huggingface_token
|
105 |
)
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
|
108 |
|
109 |
llm = None
|
@@ -201,7 +208,8 @@ demo = gr.ChatInterface(
|
|
201 |
'Llama-3.2-1B-Instruct-Q8_0.gguf',
|
202 |
'Mistral-Small-Instruct-2409-Q5_K_M.gguf',
|
203 |
'Llama-3.1-SuperNova-Lite-Q5_K_M.gguf',
|
204 |
-
'mixtralorochi8x7b.Q4_K_M.gguf'
|
|
|
205 |
],
|
206 |
value="gemma-2-2b-it-Q6_K_L.gguf",
|
207 |
label="Model"
|
|
|
104 |
token=huggingface_token
|
105 |
)
|
106 |
|
107 |
+
hf_hub_download(
|
108 |
+
repo_id="bartowski/Phi-3.5-mini-instruct-GGUF",
|
109 |
+
filename="Phi-3.5-mini-instruct-Q6_K.gguf",
|
110 |
+
local_dir="./models",
|
111 |
+
token=huggingface_token
|
112 |
+
)
|
113 |
+
|
114 |
|
115 |
|
116 |
llm = None
|
|
|
208 |
'Llama-3.2-1B-Instruct-Q8_0.gguf',
|
209 |
'Mistral-Small-Instruct-2409-Q5_K_M.gguf',
|
210 |
'Llama-3.1-SuperNova-Lite-Q5_K_M.gguf',
|
211 |
+
'mixtralorochi8x7b.Q4_K_M.gguf',
|
212 |
+
'Phi-3.5-mini-instruct-Q6_K.gguf'
|
213 |
],
|
214 |
value="gemma-2-2b-it-Q6_K_L.gguf",
|
215 |
label="Model"
|