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.
Copy one in
npx shadcn@latest add https://ui.inflection.network/r/chat-bubble.jsonWhere 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>
)
}