Shorthand helper to extract the Response type from an AgentTypeConfig or ReactAgent.
InferAgentResponse: InferAgentType<T, "Response">const agent = createAgent({ responseFormat: z.object({ name: z.string() }), ... });
type Response = InferAgentResponse<typeof agent>; // { name: string }