Jul 14, 2026 · by Sujit Routray · View source

ChikitAI

Agentic AI for Healthcare Triage and Care Automation

ChikitAI

Editorial analysis

The 25 Minutes Before the Click: What a Healthcare AI Triage Tool Teaches Cross-Border Sellers About the First Mile

Every cross-border e-commerce operator knows the feeling: a customer lands on your product page, reads the description, checks the reviews, and then opens a support chat. What happens next is where the profit leaks. The average ticket takes minutes to resolve, but the pre-ticket waste — the time spent filling forms, repeating order numbers, re-stating the size issue they just typed — is the silent cost nobody tracks. It’s the equivalent of a patient sitting in a clinic waiting room, filling the same paper form for the third time, while the doctor stares at an empty schedule.

That’s why when I saw ChikitAI from NyuktAI launch on Product Hunt, I didn’t read it as a healthcare story. I read it as a blueprint for how to automate the pre-conversation — the intake, the triage, the history-taking — without falling into the trap of confident wrong answers. Founder Sujit Routray framed it perfectly: “Most healthcare AI aims at the glamorous part — diagnosis, imaging, discovery. We went the other way and attacked intake, history-taking, and triage. That’s where the capacity is hiding.” For sellers drowning in return requests, size exchanges, and “is this in stock?” queries, the capacity is hiding in the same place. This essay unpacks what ChikitAI’s design choices — probabilistic triage, explicit uncertainty, language-native reasoning, and red-flag escalation — mean for people managing customer-facing automation on Shopify, Amazon, and TikTok Shop.

Where the Time Actually Leaks

Every e-commerce support stack has a glamour problem. The flashy AI promises chat reduction, auto-reply based on knowledge base articles, and instant refund processing. Tools like Zendesk, Intercom, and Gorgias have become increasingly good at automating responses to predictable queries. But the real bottleneck isn’t the answer — it’s the intake. The customer has to explain what they want, select from a dropdown of reasons, attach a photo, verify the order number, and wait for the system to map their messy human complaint into a structured ticketing field.

ChikitAI tackled this exact problem in a clinical setting. Sujit noted in his launch post that “25 minutes get wasted before the doctor ever speaks.” The parallel in e-commerce is brutal: a customer with a damaged package spends five minutes typing “the box was crushed and the lid doesn’t close” into a support form, only to get an auto-reply asking for the order number they already provided. The inefficiency is structural — it’s not bad software; it’s bad assumptions about how humans describe problems.

Current chatbots treat language as a keyword-matching exercise. “Damaged” triggers a return label. “Wrong size” triggers an exchange prompt. But real-world intake is messy: “It’s not what I expected, it feels cheap, and the color is different from the picture.” That’s a compound complaint that a rigid chatbot either misunderstands or routes to a human after multiple confusing loops. What ChikitAI did differently was build a probabilistic reasoning layer that ingests natural language, maps it to structured dimensions (severity, duration, urgency in healthcare; reason, impact, desired resolution in commerce), and outputs a distribution of possibilities rather than a single verdict.

For a seller managing 200+ support tickets a day, the difference between “top diagnosis” and “probability distribution with confidence scores” is the difference between blindly refunding a $50 item and knowing that 65% of the complaint is about fit, 20% is about material quality, and 15% is buyer’s remorse. That distribution tells you where to invest your return policy — or where to redesign your product page.

Probabilistic Triage and the Fear of Being Wrong

The most instructive design decision in ChikitAI is one that most e-commerce tools explicitly avoid: showing uncertainty. Sujit described the architecture in response to Igor Gurovich’s question about triage decision-making: “ChikitAI never issues a definitive routing. That was a deliberate architectural choice. Every assessment outputs a probability distribution across differentials with confidence scores… The doctor decides. We’re a decision support layer at the first mile, not an autonomous router.”

Read that line again: “a confident wrong answer is worse than a useful uncertain one.”

In e-commerce automation, the industry standard is the opposite. Chatbots are trained to give a definitive answer because “I’m not sure, but I think it’s probably a size issue” is seen as a failure. So the bot picks the most likely category, attaches a return label, and moves on. If it’s wrong, the customer reopens the ticket, the anger escalates, and the cost multiplies. ChikitAI’s approach — rank possibilities, show confidence, retain a red-flag suppression layer for obvious cases (chest pain in healthcare; “I’ve been charged twice” in commerce) — is worth copying.

Imagine a customer writes: “The jacket is smaller than I thought, and one of the buttons is missing.” A conventional bot maps “size” and triggers an exchange. A probabilistic bot says: 70% fit/comfort, 25% quality defect, 5% other. It surfaces the uncertainty to your support team — or, if you design the workflow, it offers both options to the customer: “It sounds like this might be a sizing issue or a defect. Which would you like help with first?” That single micro-interaction reduces repeat tickets and increases first-contact resolution.

Where this gets tricky is operationalizing the distribution. Most e-commerce platforms (Amazon Seller Central, Shopify) don’t have a slot for “confidence score” in the return intake API. But you don’t need platform support to change your internal triage logic. You can build a custom GPT-powered intake form that records the AI’s uncertainty, flags borderline cases for manual review, and routes the clear-cut ones automatically. The tooling for this is already available: Helium 10 won’t do it, but a fine-tuned OpenAI model hooked into your Zapier workflow can. The barrier is not technology; it’s the courage to tell a system “I don’t know” out loud.

Why Amazon Sellers Should Care More Than Shopify Ones

Amazon’s return window, automated A-to-Z claims, and blind refund policies create a high-volume, low-touch environment where wrong answers are expensive. If your chatbot agrees to a return for an item that’s outside the policy window, you eat the cost and the customer gets Amazon’s goodwill refund on top. Probabilistic triage lets you flag those cases: “This request has 80% probability of being within policy, but the purchase date is borderline — escalate.” Shopify store owners, by contrast, have more control over return rules and can absorb a few wrong auto-refunds without dying. The asymmetry makes Amazon sellers the natural early adopters of uncertainty-aware intake systems.

Multilingual Without a Linguistic Middleman

A second design principle from ChikitAI that e-commerce operators should steal: language-native reasoning. Sujit made this point in response to İlknur Safaltın’s comment about multilingual support: “Most systems treat language as a translation problem. Patient speaks, text gets converted to English, then the clinical model reasons over the English. But meaning leaks at that seam… our clinical LLMs convert the patient’s own language directly into medical terminology, no English hop in the middle.”

This is exactly the mistake cross-border sellers make with multilingual customer support. They translate the support interface into Spanish, French, or German, but the AI backend still works in English. Idioms, regional variations, and culturally specific descriptions of problems (a German customer saying “the packaging was unzulänglich” vs. a French customer saying “l’emballage était insuffisant”) are flattened into a single English token during translation, losing the nuance. The result: a customer who says “the fit is weird” in their native language gets the same response as one who says “the product is broken” — because after translation, both become “fit issue” or “quality issue” without the context.

ChikitAI’s approach — fine-tune the LLM on clinical terminology directly in the source language — is more expensive to build but dramatically more accurate for emergent markets. For a seller on TikTok Shop selling to Indonesian customers who describe fabric texture with words that don’t exactly map to English, or on Etsy handling Spanish complaints about “el tacto de la tela,” a language-native model reduces misinterpretation rates. The tooling isn’t consumer-grade yet, but Anthropic and Cohere both offer multilingual fine-tuning that can be trained on your own customer conversation corpus. The ROI appears when your refund rate drops by 5% because you stopped misclassifying “it’s not the right shade” as “it’s damaged.”

The Data Privacy Parallel for Returns and Customer Data

One of the hardest parts of running an e-commerce support operation that touches sensitive data — payment information, addresses, phone numbers — is compliance. ChikitAI tackled this by deploying “own clinical-grade LLMs as independent instances for the healthcare providers. Models train where the data already lives, inside the provider’s environment.” That’s a HIPAA-grade architecture that also happens to be perfect for GDPR compliance. Most sellers don’t need on-premise models, but the principle — keep the customer data inside your infrastructure and train the model on your own conversations — is directly applicable.

Services like Squarespace or Shopify already host your customer data. The next step is to use a local (or at least regional) fine-tuning pipeline for your support AI, so that European customer data never leaves the EU. This isn’t a feature you can buy today from most support ticketing platforms, but it’s likely to become a differentiator as regulations tighten. Sellers who build this now will have a competitive moat when AI support moves from “chatbot” to “autonomous agent that handles entire return flows.”

Where the Math Breaks for E-Commerce

I said I’d give judgment, so here it is: ChikitAI’s model is built for a controlled clinical environment where the stakes are life-critical and the decision-maker is a trained professional. E-commerce is different. The “decision-maker” is often a 23-year-old customer service rep making $14/hour, or worse, an automated system that fires off a refund without human review. The probability distribution is only useful if the human actually reads it. In most support teams, reps just click “Accept” on the AI’s top guess. The uncertainty layer becomes noise.

Furthermore, ChikitAI’s probabilistic output assumes a clinician is on the other side who understands confidence intervals. Most support managers don’t. If your AI says “65% fit issue, 20% defect, 15% other,” the average rep will still treat it as a fit issue and proceed. The system needs an additional rule: “If confidence < 80%, route to senior rep.” That’s an architectural decision that ChikitAI made (red flag escalation is separate), but it adds complexity that small sellers may not want.

Where the Math Breaks

The floor is another breakpoint. In healthcare, any false negative (missing a serious condition) is catastrophic. In e-commerce, a false negative in triage means you send the customer the wrong label and waste $3. The cost structure is entirely different. Sellers shouldn’t cargo-cult the entire probabilistic setup — they should only borrow the parts that align with their margin sensitivity. For high-ASP items (anything over $100), uncertainty-aware intake reduces avoidable returns. For low-ASP items, deterministic automation is fine.

What I’d Watch / Test Next

Here’s what I plan to test with my own clients this quarter, and you can start this week:

  1. Build a probabilistic intake form for returns. Use a simple GPT-4o prompt that asks the customer to describe the issue in free text, then outputs a JSON with three possible categories and confidence scores. Hook it into your Gorgias or Zendesk ticket creation via Zapier. For the first month, do not automate the action — just log the distribution and compare it to the eventual outcome. You’ll learn where your current keyword-based routing is wrong.

  2. Install a language-native model for non-English markets. If you sell on Amazon EU or TikTok Shop Global, run a parallel experiment: route Spanish or German support text to a fine-tuned Llama 3 model that reasons in the source language, and compare its categorization accuracy against the same text going through a translate-then-reason pipeline. Use the result to decide whether the investment in a dedicated model is worth it for your category.

  3. Implement red-flag escalation rules that bypass the AI. ChikitAI’s best feature is the deterministic layer on top of the probabilistic one. In e-commerce terms, that means: “If customer mentions ‘charged twice’ or ‘payment error,’ human only — no AI auto-reply.” Most sellers already have these rules; I’m suggesting you add a second tier: “If customer mentions a word from your quality defect dictionary (e.g., ‘broken,’ ‘missing part,’ ‘mold’), the AI must not give a definitive answer unless confidence > 95%.” That single tweak wins back a lot of trust.

What ChikitAI proves is that the first mile — the intake, the triage, the history-taking — is where margin and customer satisfaction get either earned or destroyed. The companies that automate that mile with uncertainty-awareness, language-native reasoning, and a healthy respect for what they don’t know will be the ones that scale without drowning in support costs. The rest will keep filling forms while the doctor waits.

Ready to Create Your Own?

Join thousands of brands creating high-performing video ads with VEONIB. No editing skills required.

Start Creating for Free