How to use from the
Use from the
llama-cpp-python library
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="cstr/jina-v5-small-GGUF",
	filename="",
)
output = llm(
	"Once upon a time,",
	max_tokens=512,
	echo=True
)
print(output)

jina-v5-small GGUF

GGUF format of jinaai/jina-embeddings-v5-text-small for use with CrispEmbed.

Jina Embeddings v5 Small. Full-size decoder model, 1024-dimensional.

Files

Quick Start

# Download
huggingface-cli download cstr/jina-v5-small-GGUF jina-v5-small-classification.gguf --local-dir .

# Run with CrispEmbed
./crispembed -m jina-v5-small-classification.gguf "Hello world"

# Or with auto-download
./crispembed -m jina-v5-small "Hello world"

Model Details

Property Value
Architecture Qwen3
Parameters 600M
Embedding Dimension 1024
Layers 28
Pooling last-token
Tokenizer GPT-2 BPE
Base Model jinaai/jina-embeddings-v5-text-small

Verification

Verified bit-identical to HuggingFace sentence-transformers (cosine similarity >= 0.999 on test texts).

Usage with CrispEmbed

CrispEmbed is a lightweight C/C++ text embedding inference engine using ggml. No Python runtime, no ONNX. Supports BERT, XLM-R, Qwen3, and Gemma3 architectures.

# Build CrispEmbed
git clone https://github.com/CrispStrobe/CrispEmbed
cd CrispEmbed
cmake -S . -B build && cmake --build build -j

# Encode
./build/crispembed -m jina-v5-small-classification.gguf "query text"

# Server mode
./build/crispembed-server -m jina-v5-small-classification.gguf --port 8080
curl -X POST http://localhost:8080/v1/embeddings \
    -d '{"input": ["Hello world"], "model": "jina-v5-small"}'

Credits

Downloads last month
1,692
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

Model tree for cstr/jina-v5-small-GGUF

Quantized
(11)
this model