This is a code example for how you can use Danswer's APIs to build a chat bot widget for a website! The main code to look at can be found in `src/app/widget/Widget.tsx`.
To integrate the widget into your webpage, you can use the `ChatWidget` component. Here’s an example of how to include it in a page component:
```jsx
import ChatWidget from 'path/to/ChatWidget';
function MyPage() {
return (
<div>
<h1>My Webpage</h1>
<ChatWidget/>
</div>
);
}
export default MyPage;
```
### 5. Deploy
Once you are satisfied with the widget, you can build and start the application for production:
```bash
npm run build
npm run start
```
### Custom Styling and Configuration
If you need to customize the widget, you can modify the `ChatWidget` component in the `examples/widget/src/app/widget/Widget.tsx` file.
By following these steps, you should be able to get the chat widget working on your webpage.
If you want to get fancier, then take a peek at the Chat implementation within Danswer itself [here](https://github.com/danswer-ai/danswer/blob/main/web/src/app/chat/ChatPage.tsx#L82).