Listing Thumbnail

    Ada AI Agent

     Info
    Sold by: Ada 
    Deployed on AWS
    Ada is an AI-native customer service automation company that makes it easy for businesses to automatically resolve the greatest number of customer service conversations - across channels and languages - with the least amount of effort.
    3.7

    Overview

    When companies work with Ada, they hire an AI Agent that can immediately start resolving more than 83% of customer service inquiries, onboarded entirely using existing help center content.

    Rather than maintaining scripted answers for every possible customer problem, the AI Agent uses knowledge of your products and data from your business systems to reason through and resolve customers specific questions. The AI Agent leverages generative AI capabilities to understand unique customer inquiries and provide relevant, safe, and accurate resolutions that do not require a human.

    Generative AI applications are available throughout the platform for you to measure your AI Agents performance, identify quantifiable opportunities for improvement, and provide feedback to your AI Agent. The AI Agent improves over time and scales automatically as your business grows.

    For custom pricing, EULA, professional services, or a private contract, please contact: msa-awsmarketplace@ada.support .

    Highlights

    • Easy to deploy: resolve complex customer inquiries without IT dependencies, powered by generative AI that reasons based on help center content and customer data.
    • Extensible: trigger actions and automations using integrations with your agent platform and other business systems.
    • Continuous improvement: onboard, train, and coach your AI Agent with AI-powered reporting tools, recommendations, and guidance.

    Details

    Sold by

    Delivery method

    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

    Pricing is based on the duration and terms of your contract with the vendor. This entitles you to a specified quantity of use for the contract duration. If you choose not to renew or replace your contract before it ends, access to these entitlements will expire.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.

    12-month contract (1)

     Info
    Dimension
    Description
    Cost/12 months
    AI Agent
    Conversation Volume
    $35,000.00

    Vendor refund policy

    Please refer to Ada's Terms of Use

    How can we make this page better?

    Tell us how we can improve this page, or report an issue with this product.
    Tell us how we can improve this page, or report an issue with this product.

    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

    Software as a Service (SaaS)

    SaaS delivers cloud-based software applications directly to customers over the internet. You can access these applications through a subscription model. You will pay recurring monthly usage fees through your AWS bill, while AWS handles deployment and infrastructure management, ensuring scalability, reliability, and seamless integration with other AWS services.

    Resources

    Support

    Vendor support

    Need support? Reach out to our AWS lead, eric.taucer@ada.support . Need a demo? Visit this link here:

    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
    3.7
    3 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    67%
    33%
    0%
    0%
    2 AWS reviews
    |
    1 external reviews
    External reviews are from PeerSpot .
    Mihir Raval

    Strong typing has reduced runtime failures and supports predictable backend operations

    Reviewed on Apr 27, 2026
    Review from a verified AWS customer

    What is our primary use case?

    I have been using Ada for a little over three years now, primarily in backend control systems and a few safety-sensitive services where predictability matters more than raw developer convenience. What stood out early was how much Ada catches at compile time, especially around type mismatches and boundary issues, which saved us from a lot of avoidable production bugs. I use it in a fairly demanding environment with strict uptime targets, where it consistently holds up well, making it one of those tools we trust for the part of the stack where reliability really isn't negotiable.

    My use for Ada is building reliable, low-level service components that handle device communication, telemetry ingestion, and deterministic processing, particularly where timing and correctness matter. Ada's strong typing and built-in concurrency model make it a very natural fit, especially for components that need to run continuously without memory drift or unexpected runtime behavior. I lean on it for the parts of the platform where stability is more important than rapid iteration.

    I have one example to share where Ada really made a difference: a telemetry processing service built in Ada for an industrial monitoring platform, ingesting roughly 1.8 million sensor events per day, validating them, and routing them into downstream systems with very tight error tolerances. After moving that workflow from a mixed Python implementation into Ada, we cut runtime exceptions by around 40% and reduced processing latency by just under 30%, with the biggest win being the service becoming much more predictable under load, especially during peak ingestion windows.

    Ada helps achieve that reduction in runtime exceptions and processing latency mostly through its language features, with tooling reinforcing the gains. The biggest factor is Ada's strong static typing and range constraints, catching bad states at compile time instead of discovering them through runtime exceptions in production. We benefit from explicit package contracts and stricter interface boundaries, reducing invalid data passing between components and eliminating a lot of the defensive error handling we used to write in Python and C. Latency improvements mainly come from moving the hot path into compiled, native Ada code, which removes interpreter overhead, cuts object churn, and provides much more predictable execution under load.

    Beyond the core services, we also use Ada for internal utilities, protocol adapters, and a few embedded system integration layers. A significant area of impact is writing deterministic interfaces to hardware-adjacent systems without needing excessive defensive code. We also use ALIRE to standardize dependency handling and simplify local environment setup, which makes onboarding much more streamlined and cleaner than older Ada workflows, giving us a pretty practical, modern toolchain around the language.

    What is most valuable?

    The best features Ada offers include strong typing, package-based modularity, and native concurrency. Strong typing eliminates entire categories of logic errors before code even runs, while the package model forces cleaner interfaces that made larger codebases much easier to maintain over time. The built-in tasking model provides a big advantage by allowing us to write concurrent code without complex threading patterns.

    Strong typing is the biggest game-changer for my team as it has the most immediate impact by stopping entire classes of bugs before they ever make it into runtime, especially around invalid states and unit mismatches between different services. This translates directly into fewer runtime exceptions, less defensive code, and much cleaner reviews, with developers reasoning about well-defined data instead of loosely enforced inputs. Though the other features absolutely matter, strong typing is the one that changes day-to-day engineering behavior the most.

    A good feature of Ada is how readable it stays even as a system grows, with package specs making interfaces clearer for reviews and having a real impact on collaboration. Developers can understand intent faster without tracing implementation details. We also got good mileage out of contract-style checks and runtime assertions in a few sensitive modules, helping us catch edge cases earlier in test cycles and noticeably shortening debugging time.

    What needs improvement?

    The biggest area for improvement in Ada is ecosystem depth. While Ada itself is very solid, the library ecosystem is still thinner compared to Go and Rust, especially for newer cloud-native tooling and integrations, meaning we occasionally have to build wrappers or bindings ourselves, which adds some friction.

    Documentation and onboarding could be smoother, especially for developers new to Ada coming from modern ecosystems. The core docs are good, but practical examples around debugging, package patterns, and a modern deployment workflow could be more polished. We created some internal starter templates to shorten the ramp-up time, which helped, but better out-of-the-box guidance would make adoption easier.

    For how long have I used the solution?

    I have been working in this field for around five years now, and I have built strong expertise in backend engineering, cloud infrastructure, Linux system administration, and DevOps practices. I have extensively architected and maintained critical applications, mentored development workflow, and implemented reliable solutions.

    What do I think about the stability of the solution?

    Ada is stable. Once deployed, the Ada services are very quiet operationally, which is exactly what I want in production, with fewer crashes, fewer memory-related incidents, and much more predictable runtime behavior under sustained load, making it one of the most stable parts of our stack.

    What do I think about the scalability of the solution?

    The scalability of Ada is better than many people assume. It handles horizontal scaling well in containerized services, with native performance allowing us to push through more throughput per instance before scaling out. We could increase throughput by around 2.3x before needing additional infrastructure, helping keep cloud costs under control while still improving performance.

    How are customer service and support?

    The customer support is solid, especially on the tooling side. Support interactions are usually technical, direct, and useful, which I appreciate. We didn't need much handholding, but when we had compiler or build chain questions, responses were generally competent and practical, smoothing the overall experience.

    Which solution did I use previously and why did I switch?

    Before Ada, we used a mix of C++ and Python for the same mission workloads, which worked, but we spent too much time managing memory-related defects in C++ and optimizing performance bottlenecks in Python. Ada gave us a much better middle ground of native performance with far stronger correctness, which is really why we switched to Ada.

    How was the initial setup?

    My experience with pricing, setup cost, and licensing is that it is straightforward overall because Ada itself isn't the expensive part, with most of the cost sitting around engineering time and tooling setup. The setup is smooth once we standardized on GNAT and ALIRE, requiring a little more effort for first-time onboarding than a more mainstream stack, but after that, the environment is stable and repeatable, with the initial setup cost being slightly higher, but it pays off quickly in reduced maintenance.

    What about the implementation team?

    We deploy Ada in a hybrid model, as most of the runtime services are containerized in the cloud, but we also have a few edge and embedded adjacent workloads running closer to hardware, which works well because Ada handles both environments comfortably, giving us consistency across cloud and low-level execution paths without needing different languages.

    What was our ROI?

    The return on investment is very strong, especially after the first six months, where we see about a 20% reduction in maintenance effort, roughly 30% fewer production issues, and a noticeably lower operational noise for the team, with the engineering savings alone justifying the adoption, particularly in the services where reliability is critical, making it an investment that becomes more valuable over time.

    What's my experience with pricing, setup cost, and licensing?

    For specific outcomes, Ada saves us a significant amount of engineering time, cutting production bug volume by roughly 30%, reducing average debugging time by about 35%, and trimming infrastructure overhead by close to 18% after consolidating some services into leaner, native binaries. More predictable build and deploy cycles save the team a few hours every sprint, making the efficiency gains very noticeable over the course of a year.

    Which other solutions did I evaluate?

    Before choosing Ada, we looked at Rust, modern C++, and Go. Rust was the closest serious alternative because it solves a lot of the same reliability problems; however, at the time, the learning curve was steeper for our team. Go was easy operationally but didn't give us the same compile-time safety guarantees for low-level components, making Ada the best fit for our specific mix of determinism, safety, and maintainability.

    What other advice do I have?

    My advice for others looking into using Ada is to use it where correctness and reliability actually matter, not just because it is technically elegant. Ada shines in systems where downtime, unpredictable behavior, or hard-to-debug failures are expensive. If your workload is safety-critical, sensitive, real-time, or long-lived, it is worth serious consideration, with the understanding that building a little more around the edges may be necessary.

    Overall, Ada delivers exactly where we need it: reliability, predictability, and long-term maintainability. It is not the trendiest option, but that was never the point for us. In the right use case, it is exceptionally dependable and pays off over time, making me absolutely willing to use it again for the same class of system. I would rate my overall experience with Ada an 8.

    Which deployment model are you using for this solution?

    Hybrid Cloud

    If public cloud, private cloud, or hybrid cloud, which cloud provider do you use?

    Brbhavsar Bhaskar

    Symptom insights have guided accurate triage and support better provider routing for patients

    Reviewed on Apr 09, 2026
    Review provided by PeerSpot

    What is our primary use case?

    Ada is a healthcare software that provides disease identification based on your symptoms. I receive many symptoms and questions from patients about their conditions because they want to book a visit and provide the reason for their visit. I have used it a couple of times to check what my son is going through when he had a fever and many different conditions. I put the symptom in, and it was pretty accurate.

    What is most valuable?

    The best features Ada offers in my experience include asking for the age, the symptom, and the frequency of the symptoms. Ada gives a couple of options based on priority, such as what could be the disease or condition, and it has a wide list and better options, which is very helpful.

    Ada has positively impacted my organization as I work on the provider directory by re-routing based on patient symptoms to determine which patient should go to which doctor. Ada provides suggestions in the provider directory, and routed appointments are directed to the right provider based on specialty and super specialty.

    What needs improvement?

    Ada can be improved by being able to identify symptoms based on the age, and it needs to have more questionnaire options. Additionally, the speed of the application should be improved.

    For how long have I used the solution?

    I have been using Ada for probably six to seven years.

    What do I think about the stability of the solution?

    Ada is stable in my experience.

    What do I think about the scalability of the solution?

    Ada's scalability is something we are currently dealing with as we are scaling right now with the provider directory, according to which they can pre-fill those questions.

    How are customer service and support?

    There is no customer support because we are using it internally.

    Which solution did I use previously and why did I switch?

    I have never used a different solution before Ada.

    What was our ROI?

    I have not yet seen the return on investment with Ada as we recently started with it.

    What's my experience with pricing, setup cost, and licensing?

    My experience with pricing, setup cost, and licensing is that it was pretty reasonable based on the input and the questionnaire.

    Which other solutions did I evaluate?

    I did not evaluate other options before choosing Ada.

    What other advice do I have?

    My advice for others looking into using Ada is to provide as much information as possible, including the severity of the symptoms and the age. I would rate this review as an 8 out of 10.

    reviewer2783430

    AI workflows have streamlined customer support and still need improvements in technical guidance

    Reviewed on Dec 02, 2025
    Review from a verified AWS customer

    What is our primary use case?

    Ada serves as an AI customer support agent that drives our back end to help with customer success. I am mostly working on the back end, and the team responsible for setting up Ada handles the specific implementation details.

    What is most valuable?

    Ada offers agentic workflow as its best feature, providing the agent capability to personalize customer support and making customer success operations easier. Ada has positively impacted my organization by removing friction during the customer support process and simplifying the process of answering technical questions.

    For how long have I used the solution?

    I have been using Ada for the last year.

    What other advice do I have?

    My advice for others looking into using Ada is to go ahead and use it. Ada is deployed in a public cloud, and we use AWS  as our cloud provider. I would rate this product a 6.

    Which deployment model are you using for this solution?

    Public Cloud

    If public cloud, private cloud, or hybrid cloud, which cloud provider do you use?

    View all reviews