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
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
| Package | Purpose | Dependencies |
|---|---|---|
@findable-ai/sdk | TypeScript API client | Zero runtime deps |
@findable-ai/react | React components + hooks | @findable-ai/sdk, peer: react |