Skip to content

Cohere Rerank 3.5

cohere/rerank-v3.5

A model that allows for re-ranking English Language documents and semi-structured data (JSON).

Rerank
index.ts
import { rerank } from 'ai';
const result = await rerank({
model: 'cohere/rerank-v3.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.',
],
})