# @assistant-ui/react-hook-form URL: /docs/api-reference/integrations/react-hook-form React Hook Form integration for AI-assisted form filling. *** title: "@assistant-ui/react-hook-form" description: React Hook Form integration for AI-assisted form filling. ---------------------------------------------------------------------- A React Hook Form integration for @assistant-ui. import { ParametersTable } from "@/components/docs/tables/ParametersTable"; ## API Reference ### `useAssistantForm` Drop-in replacement hook for `useForm` that adds support for `@assistant-ui/react`. ```diff - import { useForm } from "react-hook-form"; + import { useAssistantForm } from "@assistant-ui/react-hook-form"; - useForm({ + useAssistantForm({ ... }); ``` #### Properties ", description: "The component to render when set_form_field is called.", }, ], }, ], }, { name: "submit_form", type: "object", description: "Configuration for the submit_form tool", children: [ { parameters: [ { name: "render", type: "ToolCallMessagePartComponent<{}, {}>", description: "The component to render when submit_form is called.", }, ], }, ], }, ], }, ], }, ], }, ], }, ]} /> ### `formTools` The set of tools to use with `useAssistantForm`, useful for runtimes that do not support client-side tool definitions (i.e. Vercel AI SDK). ```tsx {1, 5-7} import { formTools } from "@assistant-ui/react-hook-form"; const result = streamText({ ... tools: { ...formTools, } }); ```