Middleware
Control and customize agent execution at every step
What is a Middleware
Middleware provides a way to hook the workflow execution and therefore also Agent and RAG, since they too are workflows.
The core Workflow execution involves calling nodes based on the events returned by other nodes. Middleware exposes hooks to step inside before and after the execution of nodes:

What can middleware do?
Control
Transform prompts, tool selection, and output formatting.
Guardrails
Add retries, rate limits, implement guardrails, prompt rejection.
Monitor
Track agent behavior with logging, analytics, and debugging.
Creating Middleware
You can use the command below to create a middleware class:
A new class will be created in your project with the default middleware structure:
Registering Middleware
If you would like to assign middleware to specific nodes, you may override the middleware method when defining the workflow:
You can also assign multiple middleware to a node, defining an array:
Global Middleware
If you want middleware to run before and after every node, you may append it to the global middleware stack in the workflow:
Examples
Neuron provides prebuilt middleware for common use cases, like tool approval, or context summarization. You can check them out in the Agent section:
MiddlewareLast updated