Rerank 3.5
Cohere
cohere/rerank-3.5
Document reranking
Context Window
4K
4,096 tokens
Max Output
—
About this model
Cohere Rerank 3.5, top search reranking model via Bedrock
Access it through Chuizi.AI with a single ck- API key — no separate Cohere account needed.
Highlights
Multi-cloud failover
Unified billing via Chuizi.AI
Best For
Search result rankingRAG relevance tuningDocument retrieval
2024-12-02
Capabilities
rerank
Aliases
rerank-3.5Pricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0.0000 |
| Output / 1M | $0.0000 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) response = client.chat.completions.create( model="cohere/rerank-3.5", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)