How to use from
llama.cpp
Install from brew
brew install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf zenlm/zen-embedding-0.6B-GGUF:Q8_0
# Run inference directly in the terminal:
llama-cli -hf zenlm/zen-embedding-0.6B-GGUF:Q8_0
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf zenlm/zen-embedding-0.6B-GGUF:Q8_0
# Run inference directly in the terminal:
llama-cli -hf zenlm/zen-embedding-0.6B-GGUF:Q8_0
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 zenlm/zen-embedding-0.6B-GGUF:Q8_0
# Run inference directly in the terminal:
./llama-cli -hf zenlm/zen-embedding-0.6B-GGUF:Q8_0
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 zenlm/zen-embedding-0.6B-GGUF:Q8_0
# Run inference directly in the terminal:
./build/bin/llama-cli -hf zenlm/zen-embedding-0.6B-GGUF:Q8_0
Use Docker
docker model run hf.co/zenlm/zen-embedding-0.6B-GGUF:Q8_0
Quick Links

Zen Embedding 0.6b Gguf

GGUF quantized 0.6B Zen Embedding model for efficient semantic search on CPU.

Overview

GGUF quantization for efficient CPU and mixed CPU/GPU inference using llama.cpp and compatible runtimes.

Developed by Hanzo AI and the Zoo Labs Foundation.

Quick Start

# Download and run with llama.cpp
./llama-cli -m zen-embedding-0.6B.Q4_K_M.gguf -p "Hello, how can I help you?" -n 512
# With llama-cpp-python
from llama_cpp import Llama

llm = Llama.from_pretrained(
    repo_id="zenlm/zen-embedding-0.6B-GGUF",
    filename="*Q4_K_M.gguf",
)
output = llm("Hello!", max_tokens=512)
print(output["choices"][0]["text"])

Model Details

Attribute Value
Parameters 0.6B
Format GGUF (quantized)
Context 8K tokens
License Apache 2.0

License

Apache 2.0

Downloads last month
105
GGUF
Model size
0.6B params
Architecture
qwen3
Hardware compatibility
Log In to add your hardware

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support