Instructions to use tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF", filename="Llama-3.2-Rabbit-Ko-1B-Instruct-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/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-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/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-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/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-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/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF:Q2_K
- Ollama
How to use tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF with Ollama:
ollama run hf.co/tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-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/Llama-3.2-Rabbit-Ko-1B-Instruct-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/Llama-3.2-Rabbit-Ko-1B-Instruct-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/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF:Q2_K
- Lemonade
How to use tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF:Q2_K
Run and chat with the model
lemonade run user.Llama-3.2-Rabbit-Ko-1B-Instruct-GGUF-Q2_K
List all available models
lemonade list
Keep Q2_K/Q3_K_M gguf only
Browse files- Llama-3.2-Rabbit-Ko-1B-Instruct-Q3_K_L.gguf +0 -3
- Llama-3.2-Rabbit-Ko-1B-Instruct-Q3_K_S.gguf +0 -3
- Llama-3.2-Rabbit-Ko-1B-Instruct-Q4_0.gguf +0 -3
- Llama-3.2-Rabbit-Ko-1B-Instruct-Q4_K_M.gguf +0 -3
- Llama-3.2-Rabbit-Ko-1B-Instruct-Q4_K_S.gguf +0 -3
- Llama-3.2-Rabbit-Ko-1B-Instruct-Q5_0.gguf +0 -3
- Llama-3.2-Rabbit-Ko-1B-Instruct-Q5_K_M.gguf +0 -3
- Llama-3.2-Rabbit-Ko-1B-Instruct-Q5_K_S.gguf +0 -3
- Llama-3.2-Rabbit-Ko-1B-Instruct-Q6_K.gguf +0 -3
- Llama-3.2-Rabbit-Ko-1B-Instruct-Q8_0.gguf +0 -3
Llama-3.2-Rabbit-Ko-1B-Instruct-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:937522dbfa5ef16ce4b6db0ac7a7111557fe9b2631be1060bf6be8d1d12f2d4a
|
| 3 |
-
size 732521376
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.2-Rabbit-Ko-1B-Instruct-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:fc1aabb194bfe50bde5b40fb2dbc5b12c2c86a5806cdaaa05ae6d8e297553699
|
| 3 |
-
size 641688480
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.2-Rabbit-Ko-1B-Instruct-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0a2b159cd100046955db841eacbed61ddddccee95f0f3ecb39a22d9ddc59d6fa
|
| 3 |
-
size 770925472
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.2-Rabbit-Ko-1B-Instruct-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:7eff8c1ba17786ec23f820a594f3bb1a3d397b067f95e6a2b9165fca1b25231d
|
| 3 |
-
size 807691168
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.2-Rabbit-Ko-1B-Instruct-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:599dff1ffedbf52f25c87813b2461180215e23c4e317d41cc407114ab00ab209
|
| 3 |
-
size 775644064
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.2-Rabbit-Ko-1B-Instruct-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1a950c0bd85c4c5b61067053ae63b7d2f92703fc7c66055b19cdcede89ce37a5
|
| 3 |
-
size 892560288
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.2-Rabbit-Ko-1B-Instruct-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f38a7fa8627e7403ff1291c8448a461ec26bf107d9b18b265b351e03830f2e1f
|
| 3 |
-
size 911500192
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.2-Rabbit-Ko-1B-Instruct-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:76ad74b3b64c1e63447dd54fb642dbb11e33fcff5bf385aeff4fbfb5a61503fd
|
| 3 |
-
size 892560288
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.2-Rabbit-Ko-1B-Instruct-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6c673701ba222b97c172dfc2fd3bd395c251bcf2b868a9896fe60ebf013c6436
|
| 3 |
-
size 1021797280
|
|
|
|
|
|
|
|
|
|
|
|
Llama-3.2-Rabbit-Ko-1B-Instruct-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:2e26d03ce85714d2583b42b43ffb4936d0c7649dad609e26847ee8968fdde543
|
| 3 |
-
size 1321079712
|
|
|
|
|
|
|
|
|
|
|
|