apps/docs/content/starter-kits/chat.mdx
To build with a chat starter kit, run this command in your terminal:
npm create tldraw@latest -- --template chat
Once you've followed the instructions, you'll need to create a .env file with an API key from Google AI Studio:
GOOGLE_GENERATIVE_AI_API_KEY=<your key>
This starter kit shows how to add visual capabilities to:
<StarterKitBento type="chat" />This starter kit demonstrates how to add tldraw's visual capabilities to an existing chat application. The integration uses a modal to bring annotation tools directly into your chat UI.
The whiteboard opens a modal tldraw editor whenever users want to create or edit visual content. The modal supports uploaded images, freehand drawing, and editing of images from chat history.
When an image is uploaded for the first time, the editor places it on the canvas, centers the camera on it, and switches into cropping mode using editor.setCurrentTool('select.crop'). From there, users can quickly crop their image to the desired section or add annotations on top.
Once the user has finished sketching or annotating, the editor exports the work as a PNG ready to send to the LLM. At the same time, it saves a tldraw snapshot of the session. This allows users to reopen the image as a whiteboard and continue working from where they left off, without flattening the individual shapes into pixels.
This starter kit provides a minimal integration between tldraw and a chat app. You can tailor the modal's appearance, available tools, and overall behavior.
You can customize the automatic crop behavior, add image processing steps, or extend support for additional file types to match your app's needs.
See src/components/WhiteboardModal.tsx:195 for the automatic crop activation and src/components/Chat.tsx:148 for drag-and-drop handling.
Since tldraw is built with React, you can adapt both the modal behavior and its appearance to integrate with your chat interface. This includes controlling when the modal opens, how it looks, and which tools are available.
For example, see src/components/WhiteboardModal.tsx:92 for UI component overrides, src/components/Chat.tsx:113 for the history image click handler, and src/app/styles.css for styling.
Custom Shape Utilities: Learn how to create custom shapes with their own interactions.
Editor API: Learn about the tldraw Editor.
Customize the user interface: Learn how to customize the user interface of your tldraw application.
If you build something great, please share it with us in our #show-and-tell channel on Discord. We want to see what you've built!