mirror of
https://github.com/langchain-ai/docs.git
synced 2026-08-27 02:41:59 -04:00
9 lines
193 B
Plaintext
9 lines
193 B
Plaintext
```ts
|
|
const customMiddleware = createMiddleware({
|
|
name: "CustomMiddleware",
|
|
beforeAgent: async (state) => {
|
|
return { x: (state.x ?? 0) + 1 }; // Update graph state instead
|
|
},
|
|
});
|
|
```
|