LangGraph
LangGraph is a library that focus on agent orchestration. It allows you to create workflows with conditionals, parallel flows, have human approval/input and persistent state across requests.
This is an example on how this works:
```ts
import { StateSchema, MessagesValue, GraphNode, StateGraph, STAR...