n8n-nodes-azure-cohere-reranker
v0.1.0
Published
n8n community node for Azure Cohere Reranker
Maintainers
Readme
n8n-nodes-azure-cohere-reranker
This is an n8n community node package that adds Azure-hosted Cohere reranking support for AI workflows.
It provides:
Azure Cohere Reranker(AI Reranker node)Azure Cohere Rerank API(credential)
This node is useful when you want to rerank retrieved documents using Azure AI Foundry-hosted Cohere models (for example, rerank-v3.5) before passing context to an AI Agent.
n8n is a fair-code workflow automation platform.
Installation
From n8n UI (after npm publish)
- Go to Settings -> Community Nodes.
- Install package:
n8n-nodes-azure-cohere-reranker.
Manual install (self-hosted)
Use this for Docker/air-gapped/private installs.
npm i n8n-nodes-azure-cohere-rerankerFor Docker/manual install details, see n8n docs:
- https://docs.n8n.io/integrations/community-nodes/installation/
- https://docs.n8n.io/integrations/community-nodes/installation/manual-install/
Nodes
Azure Cohere Reranker
AI Reranker node that reorders candidate documents by relevance to a query.
Parameters:
Model: Azure Cohere rerank model/deployment name (default:rerank-v3.5)Top N: Maximum documents to return after reranking
Credentials
Azure Cohere Rerank API
Required fields:
API KeyBase URL
Supported Base URL formats:
https://<resource>.services.ai.azure.comhttps://<resource>.services.ai.azure.com/providers/coherehttps://<resource>.services.ai.azure.com/providers/cohere/v2/rerank
The credential test automatically normalizes these URL variants.
Usage
Typical RAG flow in n8n:
- Retrieve candidate documents (for example from a vector store).
- Connect
Azure Cohere Rerankerto the retriever reranker input. - Provide Azure Cohere credential, model, and top-N value.
- Pass reranked results to your AI Agent / LLM chain.
Compatibility
- Package type: n8n community node
- Tested on: n8n
2.17.5 - Requires self-hosted n8n with community packages enabled.
Troubleshooting
- If the node does not appear, verify community packages are enabled and restart n8n.
- If credential test fails, validate API key, base URL, and Azure resource access to Cohere models.
- For Docker, ensure package is installed in
~/.n8n/nodesfor the running container user.
Resources
- n8n community nodes docs: https://docs.n8n.io/integrations/#community-nodes
- Cohere rerank docs: https://docs.cohere.com/docs/rerank
- Repository: https://github.com/pip-install-skills/n8n-nodes-azure-cohere-reranker
Version history
0.1.0
- Initial release:
- Added
Azure Cohere Rerankernode - Added
Azure Cohere Rerank APIcredential - Added Azure base URL normalization and credential test request
- Added
