Const
Prebuilt schema meta for Zod state definition.
import { z } from "zod/v4-mini";import { MessagesZodState, StateGraph } from "@langchain/langgraph";const AgentState = z.object({ messages: z.custom<BaseMessage[]>().register(registry, MessagesZodMeta),}); Copy
import { z } from "zod/v4-mini";import { MessagesZodState, StateGraph } from "@langchain/langgraph";const AgentState = z.object({ messages: z.custom<BaseMessage[]>().register(registry, MessagesZodMeta),});
Prebuilt schema meta for Zod state definition.