Instructions to use tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF", filename="KONI-Llama3-8B-Instruct-20240729-Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K
- Ollama
How to use tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF with Ollama:
ollama run hf.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K
- Lemonade
How to use tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF:Q2_K
Run and chat with the model
lemonade run user.KONI-Llama3-8B-Instruct-20240729-GGUF-Q2_K
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- KONI-Llama3-8B-Instruct-20240729-Q2_K.gguf +3 -0
- KONI-Llama3-8B-Instruct-20240729-Q3_K_L.gguf +3 -0
- KONI-Llama3-8B-Instruct-20240729-Q3_K_M.gguf +3 -0
- KONI-Llama3-8B-Instruct-20240729-Q3_K_S.gguf +3 -0
- KONI-Llama3-8B-Instruct-20240729-Q4_0.gguf +3 -0
- KONI-Llama3-8B-Instruct-20240729-Q4_K_M.gguf +3 -0
- KONI-Llama3-8B-Instruct-20240729-Q4_K_S.gguf +3 -0
- KONI-Llama3-8B-Instruct-20240729-Q5_0.gguf +3 -0
- KONI-Llama3-8B-Instruct-20240729-Q5_K_M.gguf +3 -0
- KONI-Llama3-8B-Instruct-20240729-Q5_K_S.gguf +3 -0
- KONI-Llama3-8B-Instruct-20240729-Q6_K.gguf +3 -0
- KONI-Llama3-8B-Instruct-20240729-Q8_0.gguf +3 -0
- README.md +84 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
KONI-Llama3-8B-Instruct-20240729-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
KONI-Llama3-8B-Instruct-20240729-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
KONI-Llama3-8B-Instruct-20240729-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
KONI-Llama3-8B-Instruct-20240729-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
KONI-Llama3-8B-Instruct-20240729-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
KONI-Llama3-8B-Instruct-20240729-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
KONI-Llama3-8B-Instruct-20240729-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
KONI-Llama3-8B-Instruct-20240729-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
KONI-Llama3-8B-Instruct-20240729-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
KONI-Llama3-8B-Instruct-20240729-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
KONI-Llama3-8B-Instruct-20240729-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
KONI-Llama3-8B-Instruct-20240729-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
KONI-Llama3-8B-Instruct-20240729-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb3875beeb77263d05db322df36fc259f319387d476db562a68d5e70402c7609
|
| 3 |
+
size 3179132256
|
KONI-Llama3-8B-Instruct-20240729-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa6035a38968dbbf006cbbf6d08f5c297b98caff5e23580abbe3d8ffd722f54b
|
| 3 |
+
size 4321957216
|
KONI-Llama3-8B-Instruct-20240729-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:91b65646c5bb6198c25a5bd88307e212526532698a7e0ae7c351d175f9883f60
|
| 3 |
+
size 4018918752
|
KONI-Llama3-8B-Instruct-20240729-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ff3a97c28bc52d4339d27e6d45ee32be2bda9b7dc9cd824c9631066c8d50854
|
| 3 |
+
size 3664500064
|
KONI-Llama3-8B-Instruct-20240729-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81600fe8fc6d3c17f0fcb3751774af96d56e588b1a96f3b0e671a9cd1f1663ac
|
| 3 |
+
size 4661212512
|
KONI-Llama3-8B-Instruct-20240729-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:099a5dcdcc340f2c48d03417a835d563051f851360ed312ecb505e25b565da65
|
| 3 |
+
size 4920735072
|
KONI-Llama3-8B-Instruct-20240729-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d9cfbea49aa4887303c49a707874698c7b861b77ef300d64375162c822a8af1
|
| 3 |
+
size 4692669792
|
KONI-Llama3-8B-Instruct-20240729-Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae8be97f6cdf69562a0d618843c2a4e64fa53b1cb3384181662e7e19bac0ce99
|
| 3 |
+
size 5599294816
|
KONI-Llama3-8B-Instruct-20240729-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ab49d61e4d2b40485450b358a443e5908f8066012bd5831250b6c5324ca95b9
|
| 3 |
+
size 5732988256
|
KONI-Llama3-8B-Instruct-20240729-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af6842d5e82f2fa2f79af38f269239110d41bef791f3d8b4c3f45d6bc4960bd3
|
| 3 |
+
size 5599294816
|
KONI-Llama3-8B-Instruct-20240729-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a7c41dfdac062a4b097e1da8c597fc765d96fff0305fbdf433938a13cfac9f45
|
| 3 |
+
size 6596007264
|
KONI-Llama3-8B-Instruct-20240729-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2727aeef95ed1abe1f292f0005c1f86b972f9507ca7fbf3578f7e96fb88e77d1
|
| 3 |
+
size 8540771680
|
README.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: ko
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
license: llama3
|
| 5 |
+
tags:
|
| 6 |
+
- TensorBlock
|
| 7 |
+
- GGUF
|
| 8 |
+
base_model: KISTI-KONI/KONI-Llama3-8B-Instruct-20240729
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
<div style="width: auto; margin-left: auto; margin-right: auto">
|
| 12 |
+
<img src="https://i.imgur.com/jC7kdl8.jpeg" alt="TensorBlock" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
| 13 |
+
</div>
|
| 14 |
+
<div style="display: flex; justify-content: space-between; width: 100%;">
|
| 15 |
+
<div style="display: flex; flex-direction: column; align-items: flex-start;">
|
| 16 |
+
<p style="margin-top: 0.5em; margin-bottom: 0em;">
|
| 17 |
+
Feedback and support: TensorBlock's <a href="https://x.com/tensorblock_aoi">Twitter/X</a>, <a href="https://t.me/TensorBlock">Telegram Group</a> and <a href="https://x.com/tensorblock_aoi">Discord server</a>
|
| 18 |
+
</p>
|
| 19 |
+
</div>
|
| 20 |
+
</div>
|
| 21 |
+
|
| 22 |
+
## KISTI-KONI/KONI-Llama3-8B-Instruct-20240729 - GGUF
|
| 23 |
+
|
| 24 |
+
This repo contains GGUF format model files for [KISTI-KONI/KONI-Llama3-8B-Instruct-20240729](https://huggingface.co/KISTI-KONI/KONI-Llama3-8B-Instruct-20240729).
|
| 25 |
+
|
| 26 |
+
The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit b4011](https://github.com/ggerganov/llama.cpp/commit/a6744e43e80f4be6398fc7733a01642c846dce1d).
|
| 27 |
+
|
| 28 |
+
<div style="text-align: left; margin: 20px 0;">
|
| 29 |
+
<a href="https://tensorblock.co/waitlist/client" style="display: inline-block; padding: 10px 20px; background-color: #007bff; color: white; text-decoration: none; border-radius: 5px; font-weight: bold;">
|
| 30 |
+
Run them on the TensorBlock client using your local machine ↗
|
| 31 |
+
</a>
|
| 32 |
+
</div>
|
| 33 |
+
|
| 34 |
+
## Prompt template
|
| 35 |
+
|
| 36 |
+
```
|
| 37 |
+
<|start_header_id|>system<|end_header_id|>
|
| 38 |
+
|
| 39 |
+
You are KONI, an AI assistant trained based on LlaMA3 and created by KISTI to be helpful and honest. Your knowledge spans a wide range of topics, allowing you to engage in substantive conversations and provide analysis on complex subjects. Below is an instruction that describes a task. Write a response that appropriately completes the request. If you don't know the answer, just say that you don't know.<|eot_id|><|start_header_id|>system<|end_header_id|>
|
| 40 |
+
|
| 41 |
+
{system_prompt}<|eot_id|><|start_header_id|>Human<|end_header_id|>
|
| 42 |
+
|
| 43 |
+
{prompt}<|eot_id|><|start_header_id|>KONI<|end_header_id|>
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
## Model file specification
|
| 47 |
+
|
| 48 |
+
| Filename | Quant type | File Size | Description |
|
| 49 |
+
| -------- | ---------- | --------- | ----------- |
|
| 50 |
+
| [KONI-Llama3-8B-Instruct-20240729-Q2_K.gguf](https://huggingface.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF/blob/main/KONI-Llama3-8B-Instruct-20240729-Q2_K.gguf) | Q2_K | 3.179 GB | smallest, significant quality loss - not recommended for most purposes |
|
| 51 |
+
| [KONI-Llama3-8B-Instruct-20240729-Q3_K_S.gguf](https://huggingface.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF/blob/main/KONI-Llama3-8B-Instruct-20240729-Q3_K_S.gguf) | Q3_K_S | 3.665 GB | very small, high quality loss |
|
| 52 |
+
| [KONI-Llama3-8B-Instruct-20240729-Q3_K_M.gguf](https://huggingface.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF/blob/main/KONI-Llama3-8B-Instruct-20240729-Q3_K_M.gguf) | Q3_K_M | 4.019 GB | very small, high quality loss |
|
| 53 |
+
| [KONI-Llama3-8B-Instruct-20240729-Q3_K_L.gguf](https://huggingface.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF/blob/main/KONI-Llama3-8B-Instruct-20240729-Q3_K_L.gguf) | Q3_K_L | 4.322 GB | small, substantial quality loss |
|
| 54 |
+
| [KONI-Llama3-8B-Instruct-20240729-Q4_0.gguf](https://huggingface.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF/blob/main/KONI-Llama3-8B-Instruct-20240729-Q4_0.gguf) | Q4_0 | 4.661 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
|
| 55 |
+
| [KONI-Llama3-8B-Instruct-20240729-Q4_K_S.gguf](https://huggingface.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF/blob/main/KONI-Llama3-8B-Instruct-20240729-Q4_K_S.gguf) | Q4_K_S | 4.693 GB | small, greater quality loss |
|
| 56 |
+
| [KONI-Llama3-8B-Instruct-20240729-Q4_K_M.gguf](https://huggingface.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF/blob/main/KONI-Llama3-8B-Instruct-20240729-Q4_K_M.gguf) | Q4_K_M | 4.921 GB | medium, balanced quality - recommended |
|
| 57 |
+
| [KONI-Llama3-8B-Instruct-20240729-Q5_0.gguf](https://huggingface.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF/blob/main/KONI-Llama3-8B-Instruct-20240729-Q5_0.gguf) | Q5_0 | 5.599 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
|
| 58 |
+
| [KONI-Llama3-8B-Instruct-20240729-Q5_K_S.gguf](https://huggingface.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF/blob/main/KONI-Llama3-8B-Instruct-20240729-Q5_K_S.gguf) | Q5_K_S | 5.599 GB | large, low quality loss - recommended |
|
| 59 |
+
| [KONI-Llama3-8B-Instruct-20240729-Q5_K_M.gguf](https://huggingface.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF/blob/main/KONI-Llama3-8B-Instruct-20240729-Q5_K_M.gguf) | Q5_K_M | 5.733 GB | large, very low quality loss - recommended |
|
| 60 |
+
| [KONI-Llama3-8B-Instruct-20240729-Q6_K.gguf](https://huggingface.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF/blob/main/KONI-Llama3-8B-Instruct-20240729-Q6_K.gguf) | Q6_K | 6.596 GB | very large, extremely low quality loss |
|
| 61 |
+
| [KONI-Llama3-8B-Instruct-20240729-Q8_0.gguf](https://huggingface.co/tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF/blob/main/KONI-Llama3-8B-Instruct-20240729-Q8_0.gguf) | Q8_0 | 8.541 GB | very large, extremely low quality loss - not recommended |
|
| 62 |
+
|
| 63 |
+
|
| 64 |
+
## Downloading instruction
|
| 65 |
+
|
| 66 |
+
### Command line
|
| 67 |
+
|
| 68 |
+
Firstly, install Huggingface Client
|
| 69 |
+
|
| 70 |
+
```shell
|
| 71 |
+
pip install -U "huggingface_hub[cli]"
|
| 72 |
+
```
|
| 73 |
+
|
| 74 |
+
Then, downoad the individual model file the a local directory
|
| 75 |
+
|
| 76 |
+
```shell
|
| 77 |
+
huggingface-cli download tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF --include "KONI-Llama3-8B-Instruct-20240729-Q2_K.gguf" --local-dir MY_LOCAL_DIR
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
If you wanna download multiple model files with a pattern (e.g., `*Q4_K*gguf`), you can try:
|
| 81 |
+
|
| 82 |
+
```shell
|
| 83 |
+
huggingface-cli download tensorblock/KONI-Llama3-8B-Instruct-20240729-GGUF --local-dir MY_LOCAL_DIR --local-dir-use-symlinks False --include='*Q4_K*gguf'
|
| 84 |
+
```
|