Views
No views yet

jina-reranker-v3.5 is a 0.6B-parameter multilingual listwise document reranker and a drop-in upgrade to jina-reranker-v3.
It keeps the same last-but-not-late (LBNL) listwise interface — ranking a query against many candidates in one forward pass — while improving domain robustness, structured-data ranking, multilingual retrieval, and inference efficiency.jina-reranker-v3 under a unified top-100 protocol with jina-embeddings-v5-text-small as the first stage:| Model | Size | BEIR | MIRACL | RTEB‡ | Struct-IR† |
|---|---|---|---|---|---|
| jina-reranker-v3.5 | 0.6B | 63.20 | 74.11 | 70.95 | 48.3 |
| jina-reranker-v3 | 0.6B | 62.10 | 72.20 | 68.01 | 38.7 |
| Qwen3-Reranker-4B | 4.0B | 62.28 | 76.56 | 77.68 | 55.6 |
| Qwen3-Reranker-0.6B | 0.6B | 56.94 | 67.12 | 68.41 | 41.9 |
| mxbai-rerank-large-v2 | 1.5B | 62.45 | 69.65 | 70.81 | 43.0 |
| mxbai-rerank-base-v2 | 0.5B | 59.58 | 64.90 | 61.44 | 30.4 |
transformers for local inference:pip install transformers1from transformers import AutoModel
2
3model = AutoModel.from_pretrained(
4 'jinaai/jina-reranker-v3.5',
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()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.5",
7 "query": "slm markdown",
8 "documents": [
9 ...
10 ],
11 "return_documents": false
12}'1{
2 "model": "jina-reranker-v3.5",
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}jina-reranker-v3, switch the model string to jina-reranker-v3.5 — same request schema, stronger domain / structured rankings, lower latency on long lists.jina-reranker-v3.5 useful in your research, please cite our technical report:1@misc{nasika2026jinarerankerv35,
2 title={jina-reranker-v3.5: Hybrid-Attention Listwise Reranking with Self-Distillation for Domain-Robust Retrieval},
3 author={Christina Nasika and Feng Wang and Antonis Minas Krasakis and Han Xiao},
4 year={2026},
5 eprint={2607.18152},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2607.18152},
9}jina-reranker-v3.5 is licensed under CC BY-NC 4.0. For commercial usage inquiries, feel free to contact us.