Spaces:
Runtime error
Runtime error
Salvatore Rossitto
commited on
Commit
·
fabf144
1
Parent(s):
fe71477
added download message
Browse files- agent_llama_ui.py +3 -0
agent_llama_ui.py
CHANGED
@@ -42,8 +42,11 @@ def get_models():
|
|
42 |
# Filter out any subdirectories, if any
|
43 |
models = [model for model in models if (model.lower().split(".")[-1] in supported_extensions) and os.path.isfile(os.path.join(models_directory, model))]
|
44 |
if len(models) == 0:
|
|
|
45 |
from huggingface_hub import hf_hub_download
|
|
|
46 |
hf_hub_download(repo_id="TheBloke/Mistral-7B-Instruct-v0.1-GGUF", filename="mistral-7b-instruct-v0.1.Q4_K_M.gguf", local_dir=models_directory)
|
|
|
47 |
hf_hub_download(repo_id="digiplay/DreamShaper_8", filename="dreamshaper_8.safetensors", local_dir=models_directory)
|
48 |
|
49 |
models.append("http://localhost:5000")
|
|
|
42 |
# Filter out any subdirectories, if any
|
43 |
models = [model for model in models if (model.lower().split(".")[-1] in supported_extensions) and os.path.isfile(os.path.join(models_directory, model))]
|
44 |
if len(models) == 0:
|
45 |
+
st.write("Downloading models")
|
46 |
from huggingface_hub import hf_hub_download
|
47 |
+
st.write("Downloading mistral-7b-instruct-v0.1.Q4_K_M.gguf")
|
48 |
hf_hub_download(repo_id="TheBloke/Mistral-7B-Instruct-v0.1-GGUF", filename="mistral-7b-instruct-v0.1.Q4_K_M.gguf", local_dir=models_directory)
|
49 |
+
st.write("Downloading dreamshaper_8.safetensors")
|
50 |
hf_hub_download(repo_id="digiplay/DreamShaper_8", filename="dreamshaper_8.safetensors", local_dir=models_directory)
|
51 |
|
52 |
models.append("http://localhost:5000")
|