Copilots
makeAssistantVisible
makeAssistantVisible is a higher-order component (HOC) that makes React components "visible" by the assistant, allowing it to understand and interact with the component's HTML structure.
Usage
import { makeAssistantVisible } from "@assistant-ui/react";
const Button = ({ onClick, children }) => (
<button onClick={onClick}>{children}</button>
);
// Basic usage - makes component HTML readable
const ReadableButton = makeAssistantVisible(Button);
// With clickable configuration
const ClickableButton = makeAssistantVisible(Button, {
clickable: true, // Enables the click tool
});API Reference
Parameters
Component: The base React component to enhanceconfig: Optional configuration objectclickable: When true, enables the assistant to programmatically click the component
Behavior
The HOC will:
- Make the component's HTML structure available to the assistant via the system context
- Optionally provide a
clicktool ifclickableis true - Handle nested readable components (only the outermost component's HTML is provided)
- Forward refs and maintain component props
Example
// Create a readable form input
const Input = ({ label, ...props }) => (
<div>
<label>{label}</label>
<input {...props} />
</div>
);
const ReadableInput = makeAssistantVisible(Input);
// Use in your component
function Form() {
return (
<ReadableInput label="Email" type="email" placeholder="Enter your email" />
);
}Technical Details
When a component is made readable:
- It's wrapped in a
ReadableContext.Providerto handle nesting - The component's
outerHTMLis provided as system context - If
clickableis true, a uniquedata-click-idis added and aclicktool is provided - The click tool uses
querySelectorand simulates a click event - All props and refs are properly forwarded to maintain component functionality