Views
No views yet
[!IMPORTANT] We highly recommend to first read this blog post for more technical details and customized llama.cpp build.

jina-embeddings-v5-text-small-text-matching is a task-specific embedding model for text-matching, part of the jina-embeddings-v5-text model family.| Feature | Value |
|---|---|
| Parameters | 677M |
| Task | text-matching |
| Embedding Dimension | 1024 |
| Matryoshka Dimensions | 32, 64, 128, 256, 512, 768, 1024 |
| Pooling Strategy | Last-token pooling |
| Base Model | jina-embeddings-v5-text-small |



1PUT _inference/text_embedding/jina-v5
2{
3 "service": "elastic",
4 "service_settings": {
5 "model_id": "jina-embeddings-v5-text-small"
6 }
7}1# Build llama.cpp (upstream)
2git clone https://github.com/ggml-org/llama.cpp
3cd llama.cpp && cmake -B build && cmake --build build --config Release
4
5# Run embedding
6./build/bin/llama-embedding -m jina-embeddings-v5-text-small-text-matching-Q8_0.gguf \
7 --pooling last -p "Your text here"