Build with Findable

Add intelligent document search and AI-powered Q&A to your application with a few lines of code.

Live Interactive Demo

Building Assistant

Ask a question to get started

Quick Example

Five lines to a working AI chat in your React app:

App.tsxtsx
import { FindableProvider, FindableChat } from '@findable-ai/react';
import '@findable-ai/react/styles.css';

function App({ sessionToken }: { sessionToken: string }) {
  return (
    <FindableProvider token={sessionToken} buildingOwnerId="YOUR_OWNER_ID">
      <FindableChat buildingId="bld-789" />
    </FindableProvider>
  );
}

See Authentication to obtain a session token from your server.

Packages

PackagePurposeDependencies
@findable-ai/sdkTypeScript API clientZero runtime deps
@findable-ai/reactReact components + hooks@findable-ai/sdk, peer: react