Free components for building your own support agent — bring any backend.Want the agent too? Inflection resolves support requests inside your app.

Inflection UI

Support components you own.

Chat, articles and agent interfaces as React components you copy into your repo. They read your shadcn tokens, so they arrive already wearing your theme — and most of them need no Inflection account at all.

Browse 19 components4 hooksUse with anything

Copy one in

npx shadcn@latest add https://ui.inflection.network/r/chat-bubble.json
Where is my order?
It shipped this morning and is due Thursday. Want me to send the tracking link?
Checking that for you

Or wire it to a live agent

Add the provider with your publishable key, and every component has a one-line binding — on each component page, under With Inflection.

import { InflectionProvider } from "@inflection/sdk-react"

export function App({ children }) {
  return (
    <InflectionProvider publishableKey="pk_live_…">
      {children}
    </InflectionProvider>
  )
}