Listing Thumbnail

    rerank-2.5-lite Reranker

     Info
    Deployed on AWS
    Free Trial
    General-purpose reranker with instruction following optimized for both latency and quality. Context length: 32K for queries & documents (8K for queries).

    Overview

    Rerankers are neural networks that predict the relevancy scores between a query and documents and rank them based on the scores. They are used to refine search results in semantic search/retrieval systems and retrieval-augmented generation (RAG). rerank-2.5-lite is a reranker optimized for both latency and quality, delivering a 7.16% improvement in retrieval accuracy over Cohere Rerank v3.5 across 93 datasets. It also outperformed Cohere Rerank v3.5 by 10.36% on the Massive Instructed Retrieval Benchmark (MAIR). The model supports a combined context length of 32K tokens per query-document pair, including up to 8K tokens for the query, enabling more accurate retrieval over longer documents. Additionally, rerank-2.5-lite supports instruction following, allowing users to guide relevance scoring through natural language prompts. Learn more about rerank-2.5-lite here: https://blog.voyageai.com/2025/08/11/rerank-2-5 

    Highlights

    • Optimized for quality, delivering a 7.94% improvement in retrieval accuracy over Cohere Rerank v3.5 across 93 datasets.
    • Supports a combined context length of 32K tokens per query-document pair, including up to 8K tokens for the query, enabling more accurate retrieval over longer documents.
    • Supports instruction following, allowing users to guide relevance scoring through natural language prompts.

    Details

    Delivery method

    Latest version

    Deployed on AWS
    New

    Introducing multi-product solutions

    You can now purchase comprehensive solutions tailored to use cases and industries.

    Multi-product solutions

    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 5 days according to the free trial terms set by the vendor.

    rerank-2.5-lite Reranker

     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 (12)

     Info
    Dimension
    Description
    Cost/host/hour
    ml.g5.2xlarge Inference (Batch)
    Recommended
    Model inference on the ml.g5.2xlarge instance type, batch mode
    $0.00
    ml.p4d.24xlarge Inference (Real-Time)
    Recommended
    Model inference on the ml.p4d.24xlarge instance type, real-time mode
    $35.92
    ml.g5.xlarge Inference (Real-Time)
    Model inference on the ml.g5.xlarge instance type, real-time mode
    $3.03
    ml.g5.2xlarge Inference (Real-Time)
    Model inference on the ml.g5.2xlarge instance type, real-time mode
    $2.82
    ml.g5.4xlarge Inference (Real-Time)
    Model inference on the ml.g5.4xlarge instance type, real-time mode
    $4.06
    ml.g5.8xlarge Inference (Real-Time)
    Model inference on the ml.g5.8xlarge instance type, real-time mode
    $6.12
    ml.g6.xlarge Inference (Real-Time)
    Model inference on the ml.g6.xlarge instance type, real-time mode
    $2.25
    ml.g6.2xlarge Inference (Real-Time)
    Model inference on the ml.g6.2xlarge instance type, real-time mode
    $2.44
    ml.g6.4xlarge Inference (Real-Time)
    Model inference on the ml.g6.4xlarge instance type, real-time mode
    $3.31
    ml.g6.8xlarge Inference (Real-Time)
    Model inference on the ml.g6.8xlarge instance type, real-time mode
    $5.04

    Vendor refund policy

    Refunds to be processed under the conditions specified in EULA. Please contact aws-marketplace@mongodb.com  for further assistance.

    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

    MongoDB is excited to announce the initial release of rerank-2.5-lite

    Additional details

    Inputs

    Summary
    1. query: str - The query as a string. Maximum of 4K tokens.
    2. documents: List[str] - The documents to be reranked as a list of strings. Maximum of 1K documents.
    3. top_k: int, optional (default=None) - The number of most relevant documents to return. If not specified, the reranking results of all documents will be returned.
    4. truncation: bool, optional (default=True) - True: Truncates. False: raises error if any given text exceeds the context length.
    Limitations for input type
    Maximum context length: 32,000 tokens Truncation is required if inputs exceed this limit
    Input MIME type
    application/json
    https://github.com/voyage-ai/voyageai-aws/blob/main/sample_reranker_input.json
    https://github.com/voyage-ai/voyageai-aws/blob/main/sample_reranker_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 query as a string.
    The query can contain a maximum of 8000 tokens.
    Yes
    documents
    The documents to be reranked as a list of strings.
    The number of documents cannot exceed 1000. The sum of the number of tokens in the query and the number of tokens in any single document cannot exceed 32000. The total number of tokens is defined as the number of query tokens x the number of documents + sum of the number of tokens in all documents.
    Yes
    top_k
    The number of most relevant documents to return. If not specified, the reranking results of all documents will be returned.
    Type: Integer
    No
    truncation
    Whether to truncate the input to satisfy the "context length limit" on the query and the documents.
    Default value: True Type: Boolean
    No

    Support

    Vendor support

    Please email us at aws-marketplace@mongodb.com  for inquiries and customer 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.

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 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.