Cohere Reranker

CohereReranker reorders retrieved documents by relevance using Cohere rerank models.

CohereReranker reorders retrieved documents by relevance to the query using Cohere's rerank models. Pass it to your vector database's reranker parameter.

ParameterTypeDefaultDescription
modelstr"rerank-multilingual-v3.0"The Cohere model to use for reranking.
api_keyOptional[str]NoneThe Cohere API key. If not provided, will attempt to use environment variables.
cohere_clientOptional[CohereClient]NoneAn optional pre-configured Cohere client instance.
top_nOptional[int]NoneThe maximum number of documents to return after reranking. If None, returns all documents.