Skip to content

Voyage Rerank 2.5

voyage/rerank-2.5

A generalist reranker optimized for quality with instruction-following and multilingual support.

Rerank
index.ts
import { rerank } from 'ai';
const result = await rerank({
model: 'voyage/rerank-2.5',
query: 'What is the capital of France?',
documents: [
'Paris is the capital of France.',
'Berlin is the capital of Germany.',
'Madrid is the capital of Spain.',
],
})