Instructions to use N8Programs/Voidhead-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use N8Programs/Voidhead-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="N8Programs/Voidhead-GGUF", filename="Voidhead-9B-Q4_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use N8Programs/Voidhead-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf N8Programs/Voidhead-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf N8Programs/Voidhead-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf N8Programs/Voidhead-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf N8Programs/Voidhead-GGUF:Q4_K_M
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 N8Programs/Voidhead-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf N8Programs/Voidhead-GGUF:Q4_K_M
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 N8Programs/Voidhead-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf N8Programs/Voidhead-GGUF:Q4_K_M
Use Docker
docker model run hf.co/N8Programs/Voidhead-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use N8Programs/Voidhead-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "N8Programs/Voidhead-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": "N8Programs/Voidhead-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/N8Programs/Voidhead-GGUF:Q4_K_M
- Ollama
How to use N8Programs/Voidhead-GGUF with Ollama:
ollama run hf.co/N8Programs/Voidhead-GGUF:Q4_K_M
- Unsloth Studio new
How to use N8Programs/Voidhead-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 N8Programs/Voidhead-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 N8Programs/Voidhead-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for N8Programs/Voidhead-GGUF to start chatting
- Docker Model Runner
How to use N8Programs/Voidhead-GGUF with Docker Model Runner:
docker model run hf.co/N8Programs/Voidhead-GGUF:Q4_K_M
- Lemonade
How to use N8Programs/Voidhead-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull N8Programs/Voidhead-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Voidhead-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +6 -0
- Voidhead-9B-Q4_K_M +3 -0
- Voidhead-9B-Q4_K_S +3 -0
- Voidhead-9B-Q5_K_M.gguf +3 -0
- Voidhead-9B-Q5_K_S.gguf +3 -0
- Voidhead-9B-Q6_K.gguf +3 -0
- Voidhead-9B-Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,9 @@ 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 |
+
Voidhead-9B-Q4_K_M filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Voidhead-9B-Q4_K_S filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Voidhead-9B-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Voidhead-9B-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Voidhead-9B-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Voidhead-9B-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
Voidhead-9B-Q4_K_M
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ddde105f0107b85b56a2d1d1abe7c367b3fe2ebf85e4f77c6295fc5c56f61acd
|
| 3 |
+
size 5761057568
|
Voidhead-9B-Q4_K_S
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f2de3f8ab0f985f8fcd9eab85c12d01b0c542a81318786469fc5aa9868472a9a
|
| 3 |
+
size 5478925088
|
Voidhead-9B-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e19b696b8e409aa74242e150da171b8755630591542c5d485ccf1e8618604e38
|
| 3 |
+
size 6647366432
|
Voidhead-9B-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d70e991ea1c9f39b09783634341b3b4912b2dbff5a7b24eae6f9ec1a8636b8ed
|
| 3 |
+
size 6483591968
|
Voidhead-9B-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b4c1634fe23f3a817f80d153f8553ed13431dbcb8ab38c2a873ea1908e5140c5
|
| 3 |
+
size 7589069600
|
Voidhead-9B-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a25306c7d9875a56c99cb1dab49f1be5a2de6c1bb6b1891f9bd26d13257baee
|
| 3 |
+
size 9827148576
|