Views
No views yet
[!IMPORTANT] Preferjina-reranker-v3.5for new projects — it is a drop-in upgrade with stronger domain / multilingual / structured rankings and faster listwise inference. Same API; switch the model id fromjinaai/jina-reranker-v3tojinaai/jina-reranker-v3.5.
[!TIP] GGUF with quantizations and MLX versions are now available.
jina-reranker-v3 is a 0.6B parameter multilingual document reranker with a novel last but not late interaction architecture. Unlike ColBERT's separate encoding with multi-vector matching, this model performs causal self-attention between query and documents within the same context window, extracting contextual embeddings from the last token of each document.| Model | Size | BEIR | MIRACL | MKQA | CoIR |
|---|---|---|---|---|---|
| jina-reranker-v3 | 0.6B | 61.94 | 66.83 | 67.92 | 70.64 |
| jina-reranker-v2 | 0.3B | 57.06 | 63.65 | 67.90 | 56.14 |
| jina-reranker-m0 | 2.4B | 58.95 | 66.75 | 68.19 | 63.55 |
| bge-reranker-v2-m3 | 0.6B | 56.51 | 69.32 | 67.88 | 36.28 |
| mxbai-rerank-base-v2 | 0.5B | 58.40 | 55.32 | 64.24 | 65.71 |
| mxbai-rerank-large-v2 | 1.5B | 61.44 | 57.94 | 67.06 | 70.87 |
| Qwen3-Reranker-0.6B | 0.6B | 56.28 | 57.70 | 65.34 | 65.18 |
| Qwen3-Reranker-4B | 4.0B | 61.16 | 67.52 | 67.52 | 73.91 |
| jina-code-embeddings-0.5b | 0.5B | - | - | - | 73.94 |
transformers for local inference:pip install transformers1from transformers import AutoModel
2
3model = AutoModel.from_pretrained(
4 'jinaai/jina-reranker-v3',
5 dtype="auto",
6 trust_remote_code=True,
7)
8model.eval()1query = "What are the health benefits of green tea?"
2documents = [
3 "Green tea contains antioxidants called catechins that may help reduce inflammation and protect cells from damage.",
4 "El precio del café ha aumentado un 20% este año debido a problemas en la cadena de suministro.",
5 "Studies show that drinking green tea regularly can improve brain function and boost metabolism.",
6 "Basketball is one of the most popular sports in the United States.",
7 "绿茶富含儿茶素等抗氧化剂,可以降低心脏病风险,还有助于控制体重。",
8 "Le thé vert est riche en antioxydants et peut améliorer la fonction cérébrale.",
9]
10
11# Rerank documents
12results = model.rerank(query, documents)
13
14# Results are sorted by relevance score (highest first)
15for result in results:
16 print(f"Score: {result['relevance_score']:.4f}")
17 print(f"Document: {result['document'][:100]}...")
18 print()
19
20# Output:
21# Score: 0.2976
22# Document: Green tea contains antioxidants called catechins that may help reduce inflammation and protect ce...
23#
24# Score: 0.2258
25# Document: 绿茶富含儿茶素等抗氧化剂,可以降低心脏病风险,还有助于控制体重。
26#
27# Score: 0.1911
28# Document: Studies show that drinking green tea regularly can improve brain function and boost metabolism.
29#
30# Score: 0.1640
31# Document: Le thé vert est riche en antioxydants et peut améliorer la fonction cérébrale.1model.rerank(
2 query: str, # Search query
3 documents: List[str], # Documents to rank
4 top_n: Optional[int] = None, # Return only top N (default: all)
5 return_embeddings: bool = False, # Include doc embeddings (default: False)
6)document: Original document textrelevance_score: Float score (higher = more relevant)index: Position in input documents listembedding: Document embedding (if return_embeddings=True)1# Get only top 3 results
2top_results = model.rerank(query, documents, top_n=3)
3
4# Get embeddings for further processing
5results_with_embeddings = model.rerank(query, documents, return_embeddings=True)1curl -X POST \
2 https://api.jina.ai/v1/rerank \
3 -H "Content-Type: application/json" \
4 -H "Authorization: Bearer JINA_API_KEY" \
5 -d '{
6 "model": "jina-reranker-v3",
7 "query": "slm markdown",
8 "documents": [
9 ...
10 ],
11 "return_documents": false
12}'1{
2 "model":"jina-reranker-v3",
3 "usage": {
4 "total_tokens":2813
5 },
6 "results":[
7 {
8 "index":1,
9 "relevance_score":0.9310624287463884
10 },
11 {
12 "index":4,
13 "relevance_score":0.8982678574191957
14 },
15 {
16 "index":0,
17 "relevance_score":0.890233167219021
18 },
19 ...
20 ]
21}jina-reranker-v3 useful in your research, please cite our technical report:1@misc{wang2025jinarerankerv3lateinteractiondocument,
2 title={jina-reranker-v3: Last but Not Late Interaction for Document Reranking},
3 author={Feng Wang and Yuqing Li and Han Xiao},
4 year={2025},
5 eprint={2509.25085},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2509.25085},
9}jina-reranker-v3 is listed on AWS & Azure. If you need to use it beyond those platforms or on-premises within your company, note that the model is licensed under CC BY-NC 4.0. For commercial usage inquiries, feel free to contact us.