All models

BGE Reranker v2 M3

by BAAI

BGE Reranker v2 m3 is BAAI's multilingual reranking model, scoring how well each candidate document answers a query to sharpen retrieval results. It's a lightweight, effective second stage for RAG pipelines across many languages.

Publisher
BAAI
API model name
bge-reranker-v2-m3
Context window
8K tokens
Sizes
568M
Licence
Apache 2.0
Model card on Hugging Face

Run BGE Reranker v2 M3

Install it on a Pendra worker, then call it through the OpenAI-compatible API with a pdr_sk_ key.

from pendra import Pendra

client = Pendra(api_key="pdr_sk_...")

response = client.chat.completions.create(
    model="bge-reranker-v2-m3",
    messages=[{"role": "user", "content": "Hello!"}],
)

print(response.choices[0].message.content)

Run BGE Reranker v2 M3 on your own UK infrastructure

Deploy a worker, install BGE Reranker v2 M3, and start serving it through one sovereign API endpoint.

Related models