Instructions to use jinaai/jina-reranker-v3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use jinaai/jina-reranker-v3-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="jinaai/jina-reranker-v3-GGUF", filename="jina-reranker-v3-BF16.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use jinaai/jina-reranker-v3-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf jinaai/jina-reranker-v3-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf jinaai/jina-reranker-v3-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 jinaai/jina-reranker-v3-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf jinaai/jina-reranker-v3-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 jinaai/jina-reranker-v3-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf jinaai/jina-reranker-v3-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 jinaai/jina-reranker-v3-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf jinaai/jina-reranker-v3-GGUF:Q4_K_M
Use Docker
docker model run hf.co/jinaai/jina-reranker-v3-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use jinaai/jina-reranker-v3-GGUF with Ollama:
ollama run hf.co/jinaai/jina-reranker-v3-GGUF:Q4_K_M
- Unsloth Studio
How to use jinaai/jina-reranker-v3-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 jinaai/jina-reranker-v3-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 jinaai/jina-reranker-v3-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for jinaai/jina-reranker-v3-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use jinaai/jina-reranker-v3-GGUF with Docker Model Runner:
docker model run hf.co/jinaai/jina-reranker-v3-GGUF:Q4_K_M
- Lemonade
How to use jinaai/jina-reranker-v3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull jinaai/jina-reranker-v3-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.jina-reranker-v3-GGUF-Q4_K_M
List all available models
lemonade list
| pipeline_tag: text-ranking | |
| tags: | |
| - gguf | |
| - reranker | |
| - qwen3 | |
| - llama-cpp | |
| language: | |
| - multilingual | |
| base_model: jinaai/jina-reranker-v3 | |
| base_model_relation: quantized | |
| inference: false | |
| license: cc-by-nc-4.0 | |
| library_name: llama.cpp | |
| # jina-reranker-v3-GGUF | |
| GGUF quantizations of [jina-reranker-v3](https://huggingface.co/jinaai/jina-reranker-v3) using llama.cpp. A 0.6B parameter multilingual listwise reranker quantized for efficient inference. | |
| ## Requirements | |
| - Python 3.8+ | |
| - llama.cpp binaries (`llama-embedding` and `llama-tokenize`) | |
| - Hanxiao's llama.cpp fork recommended: https://github.com/hanxiao/llama.cpp | |
| ## Installation | |
| ```bash | |
| pip install numpy safetensors | |
| ``` | |
| ## Files | |
| - `jina-reranker-v3-BF16.gguf` - Quantized model weights (BF16, 1.1GB) | |
| - `projector.safetensors` - MLP projector weights (3MB) | |
| - `rerank.py` - Reranker implementation | |
| ## Usage | |
| ```python | |
| from rerank import GGUFReranker | |
| # Initialize reranker | |
| reranker = GGUFReranker( | |
| model_path="jina-reranker-v3-BF16.gguf", | |
| projector_path="projector.safetensors", | |
| llama_embedding_path="/path/to/llama-embedding" | |
| ) | |
| # Rerank documents | |
| query = "What is the capital of France?" | |
| documents = [ | |
| "Paris is the capital and largest city of France.", | |
| "Berlin is the capital of Germany.", | |
| "The Eiffel Tower is located in Paris." | |
| ] | |
| results = reranker.rerank(query, documents) | |
| for result in results: | |
| print(f"Score: {result['relevance_score']:.4f}, Doc: {result['document'][:50]}...") | |
| ``` | |
| ## API | |
| ### `GGUFReranker.rerank(query, documents, top_n=None, return_embeddings=False, instruction=None)` | |
| **Arguments:** | |
| - `query` (str): Search query | |
| - `documents` (List[str]): Documents to rerank | |
| - `top_n` (int, optional): Return only top N results | |
| - `return_embeddings` (bool): Include embeddings in output | |
| - `instruction` (str, optional): Custom ranking instruction | |
| **Returns:** | |
| List of dicts with keys: `index`, `relevance_score`, `document`, and optionally `embedding` | |
| ## Citation | |
| If you find `jina-reranker-v3` useful in your research, please cite the [original paper](https://arxiv.org/abs/2509.25085): | |
| ```bibtex | |
| @misc{wang2025jinarerankerv3lateinteractiondocument, | |
| title={jina-reranker-v3: Last but Not Late Interaction for Document Reranking}, | |
| author={Feng Wang and Yuqing Li and Han Xiao}, | |
| year={2025}, | |
| eprint={2509.25085}, | |
| archivePrefix={arXiv}, | |
| primaryClass={cs.CL}, | |
| url={https://arxiv.org/abs/2509.25085}, | |
| } | |
| ``` | |
| ## License | |
| This MLX implementation follows the same CC BY-NC 4.0 license as the original model. For commercial usage inquiries, please [contact Jina AI](https://jina.ai/contact-sales/). | |