Back to Copilotkit

Loading Agent State

showcase/shell-docs/src/content/docs/integrations/crewai-flows/persistence/loading-agent-state.mdx

1.57.01.2 KB
Original Source

Setting the threadId

When setting the threadId property in CopilotKit, i.e:

tsx
<CopilotKit threadId="2140b272-7180-410d-9526-f66210918b13">
  <YourApp />
</CopilotKit>

CopilotKit will restore the complete state of the thread, including the messages, from the database. (See Message Persistence for more details.)

Loading Agent State

<Callout> **Important:** For agent state to be loaded correctly, you must first ensure that message history and persistence are properly configured. Follow the guides on [Threads & Persistence](/crewai-flows/persistence/loading-message-history) and [Message Persistence](/crewai-flows/persistence/message-persistence). </Callout>

This means that the state of any agent will also be restored. For example:

tsx
const { state } = useAgent({ agentId: "research_agent" });

// state will now be the state of research_agent in the thread id given above

Learn More

To learn more about persistence and state in CopilotKit, see: