content/docs/07-reference/03-ai-sdk-rsc/09-use-actions.mdx
useActionsIt is a hook to help you access your Server Actions from the client. This is particularly useful for building interfaces that require user interactions with the server.
It is required to access these server actions via this hook because they are patched when passed through the context. Accessing them directly may result in a Cannot find Client Component error.
<Snippet text={import { useActions } from "@ai-sdk/rsc"} prompt={false} />
Record<string, Action>, a dictionary of server actions.
<ExampleLinks examples={[ { title: 'Learn to manage AI and UI states in Next.js', link: '/examples/next-app/state-management/ai-ui-states', }, { title: 'Learn to route React components using a language model in Next.js', link: '/examples/next-app/interface/route-components', }, ]} />