Thread

This example shows how to build a chat thread using Superinterface.
Thread assistant
AI provider
Superinterface Cloud logo
Superinterface Cloud
gpt-4.1-mini
Instructions
Use this to embed AI into your product. Superinterface is AI infrastructure platform.
Functions
No functions used.
'use client' import { SuperinterfaceProvider, Thread, AssistantProvider, } from '@superinterface/react' import { Theme, Flex } from '@radix-ui/themes' import '@radix-ui/themes/styles.css' import { QueryClient, QueryClientProvider } from '@tanstack/react-query' const queryClient = new QueryClient({ defaultOptions: { queries: { staleTime: 10000, }, }, }) export default function Page() { return ( <QueryClientProvider client={queryClient}> <Theme accentColor="lime" grayColor="gray" appearance="light" radius="medium" scaling="100%" > <SuperinterfaceProvider baseUrl="http://localhost:3000/api/cloud" variables={{ publicApiKey: 'e6709062-c641-44d0-a9e5-9e1da1099907', assistantId: '816b577b-bd8d-4d1c-8ff2-93a45055c242', }} > <AssistantProvider> <Flex flexGrow="1" height="100dvh" p="5" > <Thread /> </Flex> </AssistantProvider> </SuperinterfaceProvider> </Theme> </QueryClientProvider> ) }
Superinterface thread example.
Superinterface thread example.
This example is hosted here: https://examples-thread.superinterface.ai (see code here)

Getting Started

First, run the development server:
npm run dev # or yarn dev # or pnpm dev # or bun dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.