Listing Thumbnail

    Cohere Rerank v3.5

     Info
    Sold by: Cohere 
    Deployed on AWS
    Free Trial
    Rerank improves search systems by sorting documents based on their semantic similarity to a query.

    Overview

    The Cohere Rerank v3.5 endpoint enables businesses to significantly improve search and retrieval-augmented generation systems. The model takes a query and lists potential relevant documents. Rerank v3.5 then returns the documents as a list sorted by semantic similarity to the provided query. As an intelligent cross-encoding AI mode it is able to understand the meaning behind enterprise data and user questions. This model can be implemented with just a few lines of code and delivers leading performance across over 100 languages. Rerank is uniquely capable of understanding complex information which requires reasoning. Rerank v3.5 can be added to existing systems to improve performance. Please note that as of July 2025 the minimum requirement to deploy this model are NVIDIA driver version - 535 and CUDA version - 12.2.

    Highlights

    • Rerank v3.5 is uniquely capable of understanding complex documents and queries. This leads to more accurate search results when user questions have multiple aspects and require reasoning. Rerank v3.5 also offers strong performance on semi-structured data such as Code, Tables, and JSON Documents. These attributes make the model ideal for global organizations within such as Finance, Healthcare, Energy, Government, Manufacturing.
    • Rerank v3.5 can be added to existing search and retrieval-augmented generation (RAG) systems with just a few lines of code. This ease of implementation makes is simple to boost semantic understanding and improve search results. Rerank v3.5 is also highly efficient, in terms of throughput, and is capable of satisfying demanding requirements for large organizations.
    • Rerank v3.5 offers leading multilingual performance in over 100 languages, including but not limited to: Arabic, Chinese, English, French, German, Hindi, Japanese, Korean, Portuguese, Russian, and Spanish. This is useful for global organizations who operate across various languages and require a performant AI model to improve their search systems.

    Details

    Sold by

    Delivery method

    Latest version

    Deployed on AWS

    Unlock automation with AI agent solutions

    Fast-track AI initiatives with agents, tools, and solutions from AWS Partners.
    AI Agents

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    Free trial

    Try this product free for 7 days according to the free trial terms set by the vendor.

    Cohere Rerank v3.5

     Info
    Pricing is based on actual usage, with charges varying according to how much you consume. Subscriptions have no end date and may be canceled any time.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.

    Usage costs (5)

     Info
    Dimension
    Description
    Cost/host/hour
    ml.g5.2xlarge Inference (Batch)
    Recommended
    Model inference on the ml.g5.2xlarge instance type, batch mode
    $3.50
    ml.g5.2xlarge Inference (Real-Time)
    Recommended
    Model inference on the ml.g5.2xlarge instance type, real-time mode
    $3.50
    ml.g6.2xlarge Inference (Real-Time)
    Model inference on the ml.g6.2xlarge instance type, real-time mode
    $3.50
    ml.g5.xlarge Inference (Real-Time)
    Model inference on the ml.g5.xlarge instance type, real-time mode
    $3.50
    ml.g6.xlarge Inference (Real-Time)
    Model inference on the ml.g6.xlarge instance type, real-time mode
    $3.50

    Vendor refund policy

    No refunds.

    How can we make this page better?

    We'd like to hear your feedback and ideas on how to improve this page.
    We'd like to hear your feedback and ideas on how to improve this page.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    Amazon SageMaker model

    An Amazon SageMaker model package is a pre-trained machine learning model ready to use without additional training. Use the model package to create a model on Amazon SageMaker for real-time inference or batch processing. Amazon SageMaker is a fully managed platform for building, training, and deploying machine learning models at scale.

    Deploy the model on Amazon SageMaker AI using the following options:
    Deploy the model as an API endpoint for your applications. When you send data to the endpoint, SageMaker processes it and returns results by API response. The endpoint runs continuously until you delete it. You're billed for software and SageMaker infrastructure costs while the endpoint runs. AWS Marketplace models don't support Amazon SageMaker Asynchronous Inference. For more information, see Deploy models for real-time inference  .
    Deploy the model to process batches of data stored in Amazon Simple Storage Service (Amazon S3). SageMaker runs the job, processes your data, and returns results to Amazon S3. When complete, SageMaker stops the model. You're billed for software and SageMaker infrastructure costs only during the batch job. Duration depends on your model, instance type, and dataset size. AWS Marketplace models don't support Amazon SageMaker Asynchronous Inference. For more information, see Batch transform for inference with Amazon SageMaker AI  .
    Version release notes

    Request Priority: Added priority field to chat, embed and rerank requests. High priority requests are handled first, and dropped last when the system is under load, ensuring lower latency and higher availability for high priority requests when there’s a mix of workloads with different latency requirements (e.g. realtime user requests and background batch jobs)

    Removed padded tokens from sparse embedding responses to reduce unnecessary computation and enhance accuracy for token-sparse inputs. Enhanced similarity calculation: Adopted cosine similarity (cosineSim) for more precise relevance scoring in embedding comparisons. Validated stability: Completed end-to-end testing in production and staging environments to ensure reliability. Temporary parameter limit: Restricted max_n to optimize performance during initial rollout (to be adjusted in a future update).

    Additional details

    Inputs

    Summary

    Model input summary here: The model accepts JSON requests that specifies the input texts to be reranked. The maximum number number of documents that can be passed into a single rerank call is 1000. Note: The documentation below is for Version 2 of the Rerank API.

    Req { “model”: “...”, "query": "...?", "documents": [“”...], "max_tokens_per_doc": 1, "top_n": 100 }

    Res

    { "results": [ { "index": 0, "relevance_score": 0.0048297215 } ],

    Input MIME type
    application/json
    https://github.com/cohere-ai/cohere-aws/blob/main/examples/rerank_v3_samples/rerank_v3.5_input.json
    https://github.com/cohere-ai/cohere-aws/blob/main/examples/rerank_v3_samples/rerank_v3.5_input.json

    Input data descriptions

    The following table describes supported input data fields for real-time inference and batch transform.

    Field name
    Description
    Constraints
    Required
    query
    The search query. Queries longer than 2000 tokens get automatically truncated.
    Type: FreeText
    Yes
    documents
    A list of texts that will be compared to the `query`. For optimal performance we recommend against sending more than 1,000 documents in a single request. **Note**: long documents will automatically be truncated to the value of max_tokens_per_doc. **Note**: structured data should be formatted as YAML strings for best performance.
    Type: FreeText
    No
    top_n
    Limits the number of returned rerank results to the specified value. If not passed, all the rerank results will be returned.
    Default value: [] Type: Integer Minimum: 1
    No
    max_tokens_per_doc
    Defaults to 4096. Long documents will be automatically truncated to the specified number of tokens. Compatibility: 'max_tokens_per_doc' is a parameter introduced in Rerank API Version 2 (`"api_version": 2`).
    Default value: 4096 Type: Integer Minimum: 1 Maximum: 40000
    No

    Support

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Similar products

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 AWS reviews
    No customer reviews yet
    Be the first to review this product . We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.