Shorthand helper to extract the Middleware type from an AgentTypeConfig or ReactAgent.
const agent = createAgent({ middleware: [authMiddleware, loggingMiddleware], ... });type Middleware = InferAgentMiddleware<typeof agent>; Copy
const agent = createAgent({ middleware: [authMiddleware, loggingMiddleware], ... });type Middleware = InferAgentMiddleware<typeof agent>;
Shorthand helper to extract the Middleware type from an AgentTypeConfig or ReactAgent.